diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-08-30 23:02:44 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-08-30 23:02:44 (GMT) |
commit | 1307580ca1ca820b57dcfbfcdcee9afe74cc1614 (patch) | |
tree | d98055a2cafcd99c21606305b3e52d40468a5419 /plugins/pychrysalide/gui | |
parent | f23eb3b70c08d1ac6f93b3316404804764e756c9 (diff) |
Fixed some Python method signatures.
Diffstat (limited to 'plugins/pychrysalide/gui')
-rw-r--r-- | plugins/pychrysalide/gui/editem.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/pychrysalide/gui/editem.c b/plugins/pychrysalide/gui/editem.c index 03ad97a..68a0829 100644 --- a/plugins/pychrysalide/gui/editem.c +++ b/plugins/pychrysalide/gui/editem.c @@ -300,22 +300,22 @@ PyTypeObject *get_python_editor_item_type(void) { "change_content", (PyCFunction)py_editor_item_change_content, METH_VARARGS, - "Called by Chrysalide on each content change, if the item is registered." + "change_content($self, /)\n--\n\nCalled by Chrysalide on each content change, if the item is registered." }, { "change_view", (PyCFunction)py_editor_item_change_view, METH_VARARGS, - "Called by Chrysalide on each view change, if the item is registered." + "change_view($self, /)\n--\n\nCalled by Chrysalide on each view change, if the item is registered." }, { "update_view", (PyCFunction)py_editor_item_update_view, METH_VARARGS, - "Called by Chrysalide on each view content change, if the item is registered." + "update_view($self, /)\n--\n\nCalled by Chrysalide on each view content change, if the item is registered." }, { "register", (PyCFunction)py_editor_item_register, METH_NOARGS, - "register($self, /)\n--\n\nRegister the item as editor item." + "register($self, /)\n--\n\nregister($self, /)\n--\n\nRegister the item as editor item." }, { NULL } }; |