summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2014-05-17 20:12:15 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2014-05-17 20:21:26 -0300
commit834e83795dcb65d317529cb4aebc0623d8b62caf (patch)
treeabf314aebadc84932b3b2c613645febe62d982f4
parentda0b29f4f566de46340d32be5c09180f88fd71ff (diff)
downloadglade-834e83795dcb65d317529cb4aebc0623d8b62caf.tar.gz
GladeBaseEditor->build_child() use correct type for paramenters
Fixes bug 704600 "Cannot add items to menu hierarchy - assertion `GLADE_IS_WIDGET_ADAPTOR (adaptor)' failed" GladeWidget * (*build_child) (GladeBaseEditor *, GladeWidget *, GType); glin-genmarshal does not have a specific type for GType thus back in the day UINT was used instead. But this is not correct in systems where GType is bigger than UINT
-rw-r--r--gladeui/glade-base-editor.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gladeui/glade-base-editor.c b/gladeui/glade-base-editor.c
index c63a3df7..082bb8f2 100644
--- a/gladeui/glade-base-editor.c
+++ b/gladeui/glade-base-editor.c
@@ -1566,9 +1566,8 @@ glade_base_editor_class_init (GladeBaseEditorClass * klass)
G_TYPE_FROM_CLASS (object_class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GladeBaseEditorClass, build_child),
- glade_stop_emission_accumulator, NULL,
- glade_marshal_OBJECT__OBJECT_UINT,
- G_TYPE_OBJECT, 2, G_TYPE_OBJECT, G_TYPE_UINT);
+ glade_stop_emission_accumulator, NULL, NULL,
+ G_TYPE_OBJECT, 2, G_TYPE_OBJECT, G_TYPE_GTYPE);
/**
* GladeBaseEditor::delete-child: