]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/scrlwing.cpp
add wxScrollHelper::ShowScrollbars() (implemented for GTK only right now, generic...
[wxWidgets.git] / src / generic / scrlwing.cpp
index c393f20e6ddd8cbbc68a9a4b54eacaf58d5d719c..19cb186145e1d2422dc580431d77eba0cdb6cfd7 100644 (file)
@@ -972,6 +972,18 @@ void wxScrollHelper::EnableScrolling (bool x_scroll, bool y_scroll)
     m_yScrollingEnabled = y_scroll;
 }
 
+void wxScrollHelper::ShowScrollbars(wxScrollbarVisibility horz,
+                                    wxScrollbarVisibility vert)
+{
+    DoShowScrollbars(horz, vert);
+}
+
+void wxScrollHelper::DoShowScrollbars(wxScrollbarVisibility horz,
+                                      wxScrollbarVisibility vert)
+{
+    // TODO
+}
+
 // Where the current view starts from
 void wxScrollHelper::DoGetViewStart (int *x, int *y) const
 {