projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
compilation fix for non-threaded compilation (threads are still broken
[wxWidgets.git]
/
src
/
motif
/
checklst.cpp
diff --git
a/src/motif/checklst.cpp
b/src/motif/checklst.cpp
index bbd6915e8e40f1b936dbe8a952098c5a58df1583..b609661ac9d71b86f258f8c73985a947100fe65f 100644
(file)
--- a/
src/motif/checklst.cpp
+++ b/
src/motif/checklst.cpp
@@
-23,9
+23,7
@@
// implementation
// ============================================================================
// implementation
// ============================================================================
-#if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
-#endif
// ----------------------------------------------------------------------------
// implementation of wxCheckListBox class
// ----------------------------------------------------------------------------
// implementation of wxCheckListBox class
@@
-60,13
+58,13
@@
wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
// check items
// -----------
// check items
// -----------
-bool wxCheckListBox::IsChecked(size_t
uiIndex
) const
+bool wxCheckListBox::IsChecked(size_t
WXUNUSED(uiIndex)
) const
{
// TODO
return FALSE;
}
{
// TODO
return FALSE;
}
-void wxCheckListBox::Check(size_t
uiIndex, bool bCheck
)
+void wxCheckListBox::Check(size_t
WXUNUSED(uiIndex), bool WXUNUSED(bCheck)
)
{
// TODO
}
{
// TODO
}