X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b69f1bd1862481d4c10ca2c67e871ff5642ae2ee..c9b9e020cab11094582a2b921bf9943f8f5d4e6f:/src/motif/checklst.cpp?ds=sidebyside diff --git a/src/motif/checklst.cpp b/src/motif/checklst.cpp index bbd6915e8e..740a1ad14b 100644 --- a/src/motif/checklst.cpp +++ b/src/motif/checklst.cpp @@ -17,15 +17,15 @@ #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(size_t uiIndex) const +bool wxCheckListBox::IsChecked(size_t WXUNUSED(uiIndex)) const { // TODO return FALSE; } -void wxCheckListBox::Check(size_t uiIndex, bool bCheck) +void wxCheckListBox::Check(size_t WXUNUSED(uiIndex), bool WXUNUSED(bCheck)) { // TODO }