]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_notebook.i
removed duplicate entries for UTF-16/32 (which are aliases for either LE or BE varian...
[wxWidgets.git] / wxPython / src / _notebook.i
index 8f2e0b4846739ab749731c48a186e2e0bd14db81..b87ca2a0ab36a3767df73cfbd36aa1f3adb78f5e 100644 (file)
@@ -107,8 +107,8 @@ public:
     bool IsVertical() const;
 
     // set/get option to shrink to fit current page
-    void SetShrinkMode(bool shrink);
-    bool GetShrinkMode() const;
+    void SetFitToCurrentPage(bool fit);
+    bool GetFitToCurrentPage() const;
 
 
     // remove one page from the control and delete it
@@ -473,12 +473,11 @@ public:
                             int imageId = wxNOT_FOUND);
 
     // Inserts a new sub-page to the end of children of the page at given pos.
-    %Rename(InsertSubPage,
-            virtual bool, AddSubPage(size_t pos,
-                                     wxWindow *page,
-                                     const wxString& text,
-                                     bool select = false,
-                                     int imageId = wxNOT_FOUND));
+    virtual bool InsertSubPage(size_t pos,
+                               wxWindow *page,
+                               const wxString& text,
+                               bool select = false,
+                               int imageId = wxNOT_FOUND);
 
     // Adds a new page at top level after all other pages.
     virtual bool AddPage(wxWindow *page,