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 68a0829..c60d678 100644
--- a/plugins/pychrysalide/gui/editem.c
+++ b/plugins/pychrysalide/gui/editem.c
@@ -298,22 +298,22 @@ PyTypeObject *get_python_editor_item_type(void)
{
static PyMethodDef py_editor_item_methods[] = {
{
- "change_content", (PyCFunction)py_editor_item_change_content,
+ "change_content", py_editor_item_change_content,
METH_VARARGS,
"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,
+ "change_view", py_editor_item_change_view,
METH_VARARGS,
"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,
+ "update_view", py_editor_item_update_view,
METH_VARARGS,
"update_view($self, /)\n--\n\nCalled by Chrysalide on each view content change, if the item is registered."
},
{
- "register", (PyCFunction)py_editor_item_register,
+ "register", py_editor_item_register,
METH_NOARGS,
"register($self, /)\n--\n\nregister($self, /)\n--\n\nRegister the item as editor item."
},