projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Attempting to allow WIN16 compilation of the db/dbtable classes
[wxWidgets.git]
/
src
/
stubs
/
scrolbar.cpp
diff --git
a/src/stubs/scrolbar.cpp
b/src/stubs/scrolbar.cpp
index 307cdefc136adefd37a569261bf1275902475c10..dca07b3b798ed030a1b9722297597fc556436cf9 100644
(file)
--- a/
src/stubs/scrolbar.cpp
+++ b/
src/stubs/scrolbar.cpp
@@
-15,10
+15,8
@@
#include "wx/scrolbar.h"
#include "wx/scrolbar.h"
-#if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxScrollBar, wxControl)
IMPLEMENT_DYNAMIC_CLASS(wxScrollBar, wxControl)
-#endif
// Scrollbar
bool wxScrollBar::Create(wxWindow *parent, wxWindowID id,
// Scrollbar
bool wxScrollBar::Create(wxWindow *parent, wxWindowID id,
@@
-48,12
+46,12
@@
wxScrollBar::~wxScrollBar()
{
}
{
}
-void wxScrollBar::SetPosition(int viewStart)
+void wxScrollBar::Set
Thumb
Position(int viewStart)
{
// TODO
}
{
// TODO
}
-int wxScrollBar::GetPosition() const
+int wxScrollBar::Get
Thumb
Position() const
{
// TODO
return 0;
{
// TODO
return 0;
@@
-72,7
+70,7
@@
void wxScrollBar::SetScrollbar(int position, int thumbSize, int range, int pageS
void wxScrollBar::Command(wxCommandEvent& event)
{
void wxScrollBar::Command(wxCommandEvent& event)
{
- SetPosition(event.m_commandInt);
+ Set
Thumb
Position(event.m_commandInt);
ProcessCommand(event);
}
ProcessCommand(event);
}