From 32e80758c7a65bf517c213ab2e9f99c6e7c37953 Mon Sep 17 00:00:00 2001 From: Carsten Grohmann Date: Wed, 7 Sep 2022 18:08:12 +0200 Subject: [PATCH] Fix arguments in docstring of wx.ListCtrl.HitTestSubItem() --- etg/listctrl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etg/listctrl.py b/etg/listctrl.py index 6362b866..dc531a3e 100644 --- a/etg/listctrl.py +++ b/etg/listctrl.py @@ -183,7 +183,7 @@ def run(): c.addCppMethod( 'PyObject*', 'HitTestSubItem', '(const wxPoint& point)', - pyArgsString="HitTestSubItem(point) -> (item, flags, subitem)", + pyArgsString="(point) -> (item, flags, subitem)", doc="Determines which item (if any) is at the specified point, giving details in flags.", body="""\ long item, subitem;