projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
More small fixes
[wxWidgets.git]
/
src
/
motif
/
spinbutt.cpp
diff --git
a/src/motif/spinbutt.cpp
b/src/motif/spinbutt.cpp
index a9cfa3dd6b7be3258938b04688aee353b062bcec..1c763d4603077ce1b680b5fc4adfaa36fbac526c 100644
(file)
--- a/
src/motif/spinbutt.cpp
+++ b/
src/motif/spinbutt.cpp
@@
-11,16
+11,19
@@
#ifdef __GNUG__
#pragma implementation "spinbutt.h"
#ifdef __GNUG__
#pragma implementation "spinbutt.h"
+#pragma implementation "spinctlg.h"
#endif
#include "wx/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(wxSpinButton, wxControl)
-IMPLEMENT_DYNAMIC_CLASS(wxSpin
Event, wxScrollEvent);
-#endif
+IMPLEMENT_DYNAMIC_CLASS(wxSpin
Ctrl, wxControl)
+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);
long style, const wxString& name)
{
SetName(name);
@@
-50,7
+53,7
@@
int wxSpinButton::GetValue() const
return 0;
}
return 0;
}
-void wxSpinButton::SetValue(int
val
)
+void wxSpinButton::SetValue(int
WXUNUSED(val)
)
{
// TODO
}
{
// TODO
}
@@
-61,7
+64,7
@@
void wxSpinButton::SetRange(int minVal, int maxVal)
wxSpinButtonBase::SetRange(minVal, maxVal);
}
wxSpinButtonBase::SetRange(minVal, maxVal);
}
-void wxSpinButton::ChangeFont(bool
keepOriginalSize
)
+void wxSpinButton::ChangeFont(bool
WXUNUSED(keepOriginalSize)
)
{
// TODO
}
{
// TODO
}