]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/classic/scrolbar.cpp
Added wxBase headers from /include/unix to the RPM.
[wxWidgets.git] / src / mac / classic / scrolbar.cpp
index 3b08c25ecccd30e61c82e8e4cacf4cf92d2b7982..6947803c444fb3dda6ee46b7dc35bb32a93f37f2 100644 (file)
@@ -48,7 +48,7 @@ bool wxScrollBar::Create(wxWindow *parent, wxWindowID id,
 
     MacPreControlCreate( parent , id ,  wxEmptyString , pos , size ,style, validator , name , &bounds , title ) ;
 
-    m_macControl = ::NewControl(MAC_WXHWND(parent->MacGetRootWindow()) ,
+    m_macControl = (WXWidget) ::NewControl(MAC_WXHWND(parent->MacGetRootWindow()) ,
                                 &bounds , title , false , 0 , 0 , 100, 
                                 kControlScrollBarLiveProc , (long) this) ;
 
@@ -102,7 +102,7 @@ void wxScrollBar::SetScrollbar(int position, int thumbSize, int range, int pageS
 
 void wxScrollBar::Command(wxCommandEvent& event)
 {
-    SetThumbPosition(event.m_commandInt);
+    SetThumbPosition(event.GetInt());
     ProcessCommand(event);
 }