]> git.saurik.com Git - wxWidgets.git/commitdiff
Buildable under WinCE smartphone.
authorWłodzimierz Skiba <abx@abx.art.pl>
Fri, 15 Apr 2005 09:32:40 +0000 (09:32 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Fri, 15 Apr 2005 09:32:40 +0000 (09:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33621 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/wizard/wizard.cpp

index 785c87016bb2effdf4f023aaf10588bfc2f9969c..b6e483ad163c027f8dc69ab9aac9bb2673bfc812 100644 (file)
@@ -249,12 +249,14 @@ public:
             5 // Border width
         );
 
+#if wxUSE_CHECKLISTBOX
         static const wxChar *aszChoices[] =
             { _T("Zeroth"), _T("First"), _T("Second"), _T("Third"), _T("Fourth"), _T("Fifth"), _T("Sixth"), _T("Seventh"), _T("Eighth"), _T("Nineth") };
         wxString *astrChoices = new wxString[WXSIZEOF(aszChoices)];
         unsigned int ui;
         for ( ui = 0; ui < WXSIZEOF(aszChoices); ui++ )
             astrChoices[ui] = aszChoices[ui];
+
         m_checklistbox = new wxCheckListBox(this, wxID_ANY, wxDefaultPosition, wxSize(100,100),
             WXSIZEOF(aszChoices), astrChoices);
 
@@ -264,7 +266,7 @@ public:
             wxALL,
             5 // Border width
         );
-
+#endif // wxUSE_CHECKLISTBOX
 
         SetSizer(mainSizer);
         mainSizer->Fit(this);
@@ -282,7 +284,9 @@ private:
                  *m_next;
 
     wxCheckBox *m_checkbox;
+#if wxUSE_CHECKLISTBOX
     wxCheckListBox *m_checklistbox;
+#endif
 };
 
 // ============================================================================