]> git.saurik.com Git - wxWidgets.git/commitdiff
restored wxWindow::Line/PageUp/Down docs
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 23 Mar 2008 08:50:31 +0000 (08:50 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 23 Mar 2008 08:50:31 +0000 (08:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52727 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/window.h

index 894a30480314ae0d42a5dd5d83dacc9e30d2d75d..2166b02de2840054ff572694c5bf772c8786aec6 100644 (file)
@@ -1381,16 +1381,6 @@ public:
     */
     void Layout();
 
-    /**
-        This is just a wrapper for wxWindow::ScrollLines(1).
-    */
-
-
-    /**
-        This is just a wrapper for wxWindow::ScrollLines(-1).
-    */
-
-
     /**
         Lowers the window to the bottom of the window hierarchy (Z-order).
 
@@ -1508,13 +1498,24 @@ public:
     virtual void OnInternalIdle();
 
     /**
-        This is just a wrapper for wxWindow::ScrollPages(1).
+        Same as #ScrollLines (-1).
+    */
+    bool LineUp();
+
+    /**
+        Same as #ScrollLines (1).
     */
+    bool LineDown();
 
+    /**
+        Same as #ScrollPages (-1).
+    */
+    bool PageUp();
 
     /**
-        This is just a wrapper for wxWindow::ScrollPages(-1).
+        Same as #ScrollPages (1).
     */
+    bool PageDown();
 
 
     /**