]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/checklst.cpp
Start of actual filling in of wxFrame.
[wxWidgets.git] / src / motif / checklst.cpp
index 00a567632f7d6dd12fa0df3c6ef77089551f1041..b609661ac9d71b86f258f8c73985a947100fe65f 100644 (file)
@@ -23,9 +23,7 @@
 // implementation
 // ============================================================================
 
-#if !USE_SHARED_LIBRARY
-  IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
-#endif
+IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
 
 // ----------------------------------------------------------------------------
 // implementation of wxCheckListBox class
@@ -50,7 +48,7 @@ wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
                                int nStrings, const wxString choices[],
                                long style, const wxValidator& val,
                                const wxString& name)
-              : wxListBox()
+                               : wxListBox()
 {
     // TODO: you'll probably need a separate Create instead of using
     // the wxListBox one as here.
@@ -60,13 +58,13 @@ wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
 // check items
 // -----------
 
-bool wxCheckListBox::IsChecked(uint uiIndex) const
+bool wxCheckListBox::IsChecked(size_t WXUNUSED(uiIndex)) const
 {
     // TODO
     return FALSE;
 }
 
-void wxCheckListBox::Check(uint uiIndex, bool bCheck)
+void wxCheckListBox::Check(size_t WXUNUSED(uiIndex), bool WXUNUSED(bCheck))
 {
     // TODO
 }