]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/checklst.cpp
reverted Chris' MSW additions patch (we should use IPC, not Windows-only functions...
[wxWidgets.git] / src / motif / checklst.cpp
index f880ecaf45fbbe9e8cf25d9f897fad0dc9ef84d6..740a1ad14b43eaa3a014f8451c319b0f3ccfc44c 100644 (file)
 #pragma implementation "checklst.h"
 #endif
 
+#include "wx/defs.h"
+
 #include "wx/checklst.h"
 
 // ============================================================================
 // implementation
 // ============================================================================
 
-#if !USE_SHARED_LIBRARY
 IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
-#endif
 
 // ----------------------------------------------------------------------------
 // implementation of wxCheckListBox class
@@ -60,13 +60,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
 }