]> git.saurik.com Git - wxWidgets.git/commitdiff
Doh! I changed the AddPane parameter names but didn't change their usage.
authorRobin Dunn <robin@alldunn.com>
Mon, 10 Jul 2006 16:02:19 +0000 (16:02 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 10 Jul 2006 16:02:19 +0000 (16:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40055 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/aui.i

index 5b5d8b999efebd01398f3c785ccb744d2392f004..72cf5dcc7e61a614623c7431fbad3804795cf72d 100755 (executable)
@@ -213,15 +213,15 @@ The following example shows a simple implementation that utilizes
         pane info, and defaults to ``wx.LEFT``.  The pane caption may
         also be specified as an extra parameter in this form.
         """
-        if type(arg1) == PaneInfo:
-            return self._AddPane1(window, arg1)
+        if type(info) == PaneInfo:
+            return self._AddPane1(window, info)
         else:
             # This Is AddPane2
-            if arg1 is None:
-                arg1 = wx.LEFT
-            if arg2 is None:
-                arg2 = ""
-            return self._AddPane2(window, arg1, arg2)
+            if info is None:
+                info = wx.LEFT
+            if caption is None:
+                caption = ""
+            return self._AddPane2(window, info, caption)
 }
 }