diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2020-06-01 17:06:10 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2020-06-01 17:06:10 (GMT) |
commit | 95773bfde8a6915fcd206286b433dca38883b736 (patch) | |
tree | 80b59caa6913b7559c7126545539d26331722bb9 /plugins/pychrysalide/gui | |
parent | 4b7f7fb9db0dfb66bd25534a74b8ce69742fdc3b (diff) |
Updated the Python bindings for the GtkDockable interface.
Diffstat (limited to 'plugins/pychrysalide/gui')
-rw-r--r-- | plugins/pychrysalide/gui/panel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/gui/panel.c b/plugins/pychrysalide/gui/panel.c index fd31ef8..33ff4e3 100644 --- a/plugins/pychrysalide/gui/panel.c +++ b/plugins/pychrysalide/gui/panel.c @@ -561,11 +561,11 @@ bool ensure_python_panel_item_is_registered(void) if (!ensure_python_editor_item_is_registered()) return false; - if (!ensure_python_gtk_dockable_is_registered()) + if (!ensure_python_dockable_is_registered()) return false; if (!_register_class_for_pygobject(dict, G_TYPE_PANEL_ITEM, type, - get_python_editor_item_type(), get_python_gtk_dockable_type(), NULL)) + get_python_editor_item_type(), get_python_dockable_type(), NULL)) return false; if (!define_panel_item_constants(type)) |