projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
speed up ReadWord by using more efficient separator searching
[wxWidgets.git]
/
src
/
os2
/
scrolbar.cpp
diff --git
a/src/os2/scrolbar.cpp
b/src/os2/scrolbar.cpp
index 88906bdef78e0db2ece03fbaa4a80de5606d819a..a89d53de3e608f8f3de7a0457b289df0db4404d1 100644
(file)
--- a/
src/os2/scrolbar.cpp
+++ b/
src/os2/scrolbar.cpp
@@
-12,11
+12,12
@@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
+#include "wx/scrolbar.h"
+
#ifndef WX_PRECOMP
#include "wx/utils.h"
#endif
#ifndef WX_PRECOMP
#include "wx/utils.h"
#endif
-#include "wx/scrolbar.h"
#include "wx/os2/private.h"
IMPLEMENT_DYNAMIC_CLASS(wxScrollBar, wxControl)
#include "wx/os2/private.h"
IMPLEMENT_DYNAMIC_CLASS(wxScrollBar, wxControl)
@@
-224,7
+225,7
@@
bool wxScrollBar::OS2OnScroll ( int WXUNUSED(nOrientation),
vEvent.SetOrientation(IsVertical() ? wxVERTICAL : wxHORIZONTAL);
vEvent.SetPosition(nPosition);
vEvent.SetEventObject(this);
vEvent.SetOrientation(IsVertical() ? wxVERTICAL : wxHORIZONTAL);
vEvent.SetPosition(nPosition);
vEvent.SetEventObject(this);
- return
GetEventHandler()->Process
Event(vEvent);
+ return
HandleWindow
Event(vEvent);
} // end of wxScrollBar::OS2OnScroll
void wxScrollBar::SetThumbPosition ( int nViewStart )
} // end of wxScrollBar::OS2OnScroll
void wxScrollBar::SetThumbPosition ( int nViewStart )