]> git.saurik.com Git - wxWidgets.git/commitdiff
removed code inside USE_SIZABLE_CALENDAR, we should allow making the main calendar...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 19 Nov 2006 15:03:01 +0000 (15:03 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 19 Nov 2006 15:03:01 +0000 (15:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43524 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/calendar/calendar.cpp

index f784ae484c8d552778353cc5d5238e883f29afd5..cac040b2496b534c40dac570e985b62294e31c81 100644 (file)
@@ -52,8 +52,6 @@
 
 #include "../sample.xpm"
 
-#define USE_SIZABLE_CALENDAR 0
-
 // ----------------------------------------------------------------------------
 // private classes
 // ----------------------------------------------------------------------------
@@ -516,10 +514,6 @@ MyPanel::MyPanel(wxFrame *frame)
                                     wxCAL_SHOW_HOLIDAYS |
                                     wxRAISED_BORDER);
 
-#if USE_SIZABLE_CALENDAR
-    wxCalendarCtrl *sizableCalendar = new wxCalendarCtrl(this, wxID_ANY);
-#endif
-
     // adjust to vertical/horizontal display, check mostly dedicated to WinCE
     bool horizontal = ( wxSystemSettings::GetMetric(wxSYS_SCREEN_X) > wxSystemSettings::GetMetric(wxSYS_SCREEN_Y) );
     wxBoxSizer *m_sizer = new wxBoxSizer( horizontal ? wxHORIZONTAL : wxVERTICAL );
@@ -527,10 +521,6 @@ MyPanel::MyPanel(wxFrame *frame)
     m_sizer->Add(m_date, 0, wxALIGN_CENTER | wxALL, 10 );
     m_sizer->Add(m_calendar, 0, wxALIGN_CENTER | wxALIGN_LEFT);
 
-#if USE_SIZABLE_CALENDAR
-    m_sizer->Add(sizableCalendar, 1, wxEXPAND);
-#endif
-
     SetSizer( m_sizer );
     m_sizer->SetSizeHints( this );
 }