summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-07-22 21:38:30 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-07-22 21:38:30 (GMT)
commit250d2773aa372434b721a4e72bff5da7b4f3fb4e (patch)
tree3bbb6b75e1cc53c5aa189489e416e3dd92bb79c2 /plugins
parentdb863244b804cbf4c06399f7c6f8241d91c9ee9b (diff)
Used in the right way some features of GLib classes in the GUI code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@382 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'plugins')
-rw-r--r--plugins/pychrysa/gui/editem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/pychrysa/gui/editem.c b/plugins/pychrysa/gui/editem.c
index d14d66a..7a40a04 100644
--- a/plugins/pychrysa/gui/editem.c
+++ b/plugins/pychrysa/gui/editem.c
@@ -341,9 +341,9 @@ static PyObject *py_editor_item_register(PyObject *self, PyObject *args)
item = G_EDITOR_ITEM(pygobject_get(self));
- item->update_binary = _update_editor_item_for_binary_python_wrapper;
- item->update_view = _update_editor_item_for_view_python_wrapper;
- item->update_content = _update_editor_item_for_view_content_python_wrapper;
+ //item->update_binary = _update_editor_item_for_binary_python_wrapper;
+ //item->update_view = _update_editor_item_for_view_python_wrapper;
+ //item->update_content = _update_editor_item_for_view_content_python_wrapper;
Py_INCREF(self);
register_editor_item(item);