]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/calendar/calendar.cpp
1. fixed memory leak in GAddress
[wxWidgets.git] / samples / calendar / calendar.cpp
index 1a05ab23d7d1a9ebf09eb04431d4086d4837c80f..d029c165fde0f1cc381cfb63eff5e81688a6be1f 100644 (file)
@@ -299,9 +299,6 @@ void MyFrame::OnAllowYearUpdate(wxUpdateUIEvent& event)
 MyPanel::MyPanel(wxFrame *frame)
        : wxPanel(frame, -1)
 {
-    // using constraints doesn't work under GTK - the calendar window is never
-    // repainted after it had been moved at least once!
-#if 1
     SetAutoLayout(TRUE);
 
     wxString date;
@@ -331,19 +328,6 @@ MyPanel::MyPanel(wxFrame *frame)
     c->width.AsIs();
 
     m_calendar->SetConstraints(c);
-#else
-    wxString date;
-    date.Printf("Selected date: %s",
-                wxDateTime::Today().FormatISODate().c_str());
-    m_date = new wxStaticText(this, -1, date, wxPoint(10, 100));
-    m_calendar = new wxCalendarCtrl(this, Calendar_CalCtrl,
-                                    wxDefaultDateTime,
-                                    wxPoint(200, 20),
-                                    wxDefaultSize,
-                                    wxCAL_MONDAY_FIRST |
-                                    wxCAL_SHOW_HOLIDAYS |
-                                    wxRAISED_BORDER);
-#endif
 }
 
 void MyPanel::OnCalendar(wxCalendarEvent& event)