Changeset 33 for trunk/src/MainPter.cxx

Show
Ignore:
Timestamp:
04/12/06 04:30:09 (3 years ago)
Author:
jordi
Message:

The basic main window for the GTK+'s shell is already working, althoug almost no functionality is implemented. You can quit it, though :-)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/MainPter.cxx

    r31 r33  
    2626{ 
    2727    m_Document = new PDFDocument (); 
     28    m_View = NULL; 
    2829} 
    2930 
     
    4041 
    4142    m_Document = document; 
     43    m_View = NULL; 
    4244} 
    4345 
     
    4749MainPter::~MainPter () 
    4850{ 
     51    delete m_Document; 
     52    delete m_View; 
    4953} 
    5054