]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/bookctrl.h
fixed IO redirection to work in wxExecute() in console applications (including the...
[wxWidgets.git] / include / wx / bookctrl.h
index 15dd227715d3cf27ac11c4e4d1867c0af3073728..f791d2550af972bdad609f4e0291e2930d04fd89 100644 (file)
@@ -96,7 +96,6 @@ public:
     virtual size_t GetPageCount() const { return m_pages.size(); }
 
     // get the panel which represents the given page
-    wxWindow *GetPage(size_t n) { return m_pages[n]; }
     wxWindow *GetPage(size_t n) const { return m_pages[n]; }
 
     // get the current page or NULL if none
@@ -243,6 +242,9 @@ protected:
         SetSelection_SendEvent = 1
     };
 
+    // choose the default border for this window
+    virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
+
     // set the selection to the given page, sending the events (which can
     // possibly prevent the page change from taking place) if SendEvent flag is
     // included