diff options
author | Ted Gould <ted@gould.cx> | 2009-12-18 21:59:22 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-12-18 21:59:22 -0600 |
commit | 0ecba3c5d1e502e029bab5eb8f479d910329efb7 (patch) | |
tree | 5c131a52b8e5c05be2892312daff4b31070d55f2 | |
parent | e930f7d167fe1e5a889be0fd7e1ed0b625773fe4 (diff) | |
parent | ad4bfb14e3449857f52f50bca76ce52ee72be5f5 (diff) | |
download | libdbusmenu-0ecba3c5d1e502e029bab5eb8f479d910329efb7.tar.gz libdbusmenu-0ecba3c5d1e502e029bab5eb8f479d910329efb7.tar.bz2 libdbusmenu-0ecba3c5d1e502e029bab5eb8f479d910329efb7.zip |
* Upstream
* Fixing the signal prototypes.
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | libdbusmenu-glib/menuitem-marshal.list | 2 | ||||
-rw-r--r-- | libdbusmenu-glib/menuitem.c | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index b4593ec..08f8b96 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +libdbusmenu (0.2.0~dev-0ubuntu1~ppa6~sigfix1) UNRELEASED; urgency=low + + * Upstream + * Fixing the signal prototypes. + + -- Ted Gould <ted@ubuntu.com> Fri, 18 Dec 2009 21:59:03 -0600 + libdbusmenu (0.2.0~dev-0ubuntu1~ppa5) karmic; urgency=low * debian/control: Switching the breaks to be ~dev as those diff --git a/libdbusmenu-glib/menuitem-marshal.list b/libdbusmenu-glib/menuitem-marshal.list index a32e7e3..dc4ba53 100644 --- a/libdbusmenu-glib/menuitem-marshal.list +++ b/libdbusmenu-glib/menuitem-marshal.list @@ -1,4 +1,4 @@ -VOID: STRING, STRING +VOID: STRING, POINTER VOID: OBJECT, UINT, UINT VOID: OBJECT, UINT VOID: OBJECT diff --git a/libdbusmenu-glib/menuitem.c b/libdbusmenu-glib/menuitem.c index dc01157..5d45e98 100644 --- a/libdbusmenu-glib/menuitem.c +++ b/libdbusmenu-glib/menuitem.c @@ -122,8 +122,8 @@ dbusmenu_menuitem_class_init (DbusmenuMenuitemClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET(DbusmenuMenuitemClass, property_changed), NULL, NULL, - _dbusmenu_menuitem_marshal_VOID__STRING_STRING, - G_TYPE_NONE, 2, G_TYPE_STRING, G_TYPE_STRING); + _dbusmenu_menuitem_marshal_VOID__STRING_POINTER, + G_TYPE_NONE, 2, G_TYPE_STRING, G_TYPE_VALUE); /** DbusmenuMenuitem::item-activated: @arg0: The #DbusmenuMenuitem object. |