]> git.saurik.com Git - wxWidgets.git/commitdiff
Docstring typos
authorRobin Dunn <robin@alldunn.com>
Thu, 13 Jan 2005 21:11:17 +0000 (21:11 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 13 Jan 2005 21:11:17 +0000 (21:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31346 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_sizers.i
wxPython/src/_textctrl.i

index c438e2ed2e534bc3dafd9c96db3f9d322fe94b8f..017d394fa5b965222b0555a912c5fb44d108fb7e 100644 (file)
@@ -841,7 +841,7 @@ as well.", "");
     // wxList& GetChildren();
     %extend {
         DocAStr(GetChildren,
-                "GetChildren(sefl) -> list",
+                "GetChildren(self) -> list",
                 "Returns a list of all the `wx.SizerItem` objects managed by the sizer.", "");
         PyObject* GetChildren() {
             wxSizerItemList& list = self->GetChildren();
index 034bdcedc3d43b9cc5a1a53bedf8c06c745f5151..8863219b7b2a565db76a4910af063a32e5fc39db 100644 (file)
@@ -261,7 +261,7 @@ public:
     DocDeclAStr(
         virtual wxTextCtrlHitTestResult, HitTest(const wxPoint& pt,
                                                  long* OUTPUT, long* OUTPUT) const,
-        "HitTest(Point pt) -> (result, row, col)",
+        "HitTest(Point pt) -> (result, col, row)",
         "Find the row, col coresponding to the character at the point given in
 pixels. NB: pt is in device coords but is not adjusted for the client
 area origin nor scrolling.", "");