X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/31528cd3cac75558beef4bce0ba21fd182a808ab..7d1f4c3ff01b09105c07d5e176a14428c834975e:/src/motif/spinbutt.cpp?ds=sidebyside diff --git a/src/motif/spinbutt.cpp b/src/motif/spinbutt.cpp index a9cfa3dd6b..112d3e0631 100644 --- a/src/motif/spinbutt.cpp +++ b/src/motif/spinbutt.cpp @@ -10,17 +10,18 @@ ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ -#pragma implementation "spinbutt.h" + #pragma implementation "spinbutt.h" #endif #include "wx/spinbutt.h" +#include "wx/spinctrl.h" -#if !USE_SHARED_LIBRARY +// put wxSpinCtrl here too because it doesn't have a separate file for it in +// wxMotif (yet) IMPLEMENT_DYNAMIC_CLASS(wxSpinButton, wxControl) -IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxScrollEvent); -#endif +IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxNotifyEvent) -bool wxSpinButton::Create(wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& size, +bool wxSpinButton::Create(wxWindow *parent, wxWindowID id, const wxPoint& WXUNUSED(pos), const wxSize& WXUNUSED(size), long style, const wxString& name) { SetName(name); @@ -50,7 +51,7 @@ int wxSpinButton::GetValue() const return 0; } -void wxSpinButton::SetValue(int val) +void wxSpinButton::SetValue(int WXUNUSED(val)) { // TODO } @@ -61,7 +62,7 @@ void wxSpinButton::SetRange(int minVal, int maxVal) wxSpinButtonBase::SetRange(minVal, maxVal); } -void wxSpinButton::ChangeFont(bool keepOriginalSize) +void wxSpinButton::ChangeFont(bool WXUNUSED(keepOriginalSize)) { // TODO }