diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-08-12 19:09:56 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-08-12 19:09:56 (GMT) |
commit | 4c611d6f41d82603a5d37baf88b0bb213044eb60 (patch) | |
tree | 325a8928761d8daffd845be1b8470a04a243f032 /plugins/pychrysa/gui | |
parent | 287bfee6e805d5c9354c3a9c015ef6c64a0774a5 (diff) |
Improved the python plugin code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@570 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'plugins/pychrysa/gui')
-rw-r--r-- | plugins/pychrysa/gui/editem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/pychrysa/gui/editem.c b/plugins/pychrysa/gui/editem.c index 6db03ce..e2289b0 100644 --- a/plugins/pychrysa/gui/editem.c +++ b/plugins/pychrysa/gui/editem.c @@ -94,7 +94,7 @@ static void _update_editor_item_for_binary_python_wrapper(GEditorItem *item, GLo * par la procédure de pygobject, qui obligerait à connaître le type précis * de l'instance GLib manipulée. */ - target = pychrysalide_get_pygobject(G_OBJECT(item)); + target = pygobject_new(G_OBJECT(item)); args = PyTuple_New(1); PyTuple_SetItem(args, 0, pygobject_new(G_OBJECT(binary))); @@ -136,7 +136,7 @@ static void _update_editor_item_for_view_python_wrapper(GEditorItem *item, GtkVi * par la procédure de pygobject, qui obligerait à connaître le type précis * de l'instance GLib manipulée. */ - target = pychrysalide_get_pygobject(G_OBJECT(item)); + target = pygobject_new(G_OBJECT(item)); args = PyTuple_New(1); PyTuple_SetItem(args, 0, pygobject_new(G_OBJECT(view))); @@ -178,7 +178,7 @@ static void _update_editor_item_for_view_content_python_wrapper(GEditorItem *ite * par la procédure de pygobject, qui obligerait à connaître le type précis * de l'instance GLib manipulée. */ - target = pychrysalide_get_pygobject(G_OBJECT(item)); + target = pygobject_new(G_OBJECT(item)); args = PyTuple_New(1); PyTuple_SetItem(args, 0, pygobject_new(G_OBJECT(view))); |