]> git.saurik.com Git - wxWidgets.git/commitdiff
AddSubPage --> InsertSubPage
authorRobin Dunn <robin@alldunn.com>
Sun, 5 Feb 2006 22:01:12 +0000 (22:01 +0000)
committerRobin Dunn <robin@alldunn.com>
Sun, 5 Feb 2006 22:01:12 +0000 (22:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37337 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_notebook.i

index 8f2e0b4846739ab749731c48a186e2e0bd14db81..8912ca94ce8eccba4b63e9cc25b7235cc2b8960b 100644 (file)
@@ -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,