summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/gui/editem.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysalide/gui/editem.c')
-rw-r--r--plugins/pychrysalide/gui/editem.c8
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 }
};