diff options
author | Ted Gould <ted@gould.cx> | 2011-04-19 13:53:17 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-04-19 13:53:17 -0500 |
commit | 5b2d118d974dc2af45429cfd64007cd60c85e253 (patch) | |
tree | d193f4f86942ae25be55abc126ea28c385c6458f /libdbusmenu-glib | |
parent | a1c604c582a4848dff0e7675ff10289c94e368db (diff) | |
parent | c76c9af81ecf4f8f9073f1440ed129f02d71b188 (diff) | |
download | libdbusmenu-5b2d118d974dc2af45429cfd64007cd60c85e253.tar.gz libdbusmenu-5b2d118d974dc2af45429cfd64007cd60c85e253.tar.bz2 libdbusmenu-5b2d118d974dc2af45429cfd64007cd60c85e253.zip |
Fix a typo in the signal name to make it match the XML files
Diffstat (limited to 'libdbusmenu-glib')
-rw-r--r-- | libdbusmenu-glib/client.c | 2 | ||||
-rw-r--r-- | libdbusmenu-glib/server.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c index 2e6b09a..588c940 100644 --- a/libdbusmenu-glib/client.c +++ b/libdbusmenu-glib/client.c @@ -1239,7 +1239,7 @@ menuproxy_signal_cb (GDBusProxy * proxy, gchar * sender, gchar * signal, GVarian } else if (priv->root == NULL) { /* Drop out here, all the rest of these really need to have a root node so we can just ignore them if there isn't one. */ - } else if (g_strcmp0(signal, "ItemPropertiesUpdated") == 0) { + } else if (g_strcmp0(signal, "ItemsPropertiesUpdated") == 0) { /* Remove before adding just incase there is a duplicate, against the rules, but we can handle it so let's do it. */ GVariantIter ritems; diff --git a/libdbusmenu-glib/server.c b/libdbusmenu-glib/server.c index 4c3732f..be99421 100644 --- a/libdbusmenu-glib/server.c +++ b/libdbusmenu-glib/server.c @@ -986,7 +986,7 @@ menuitem_property_idle (gpointer user_data) NULL, priv->dbusobject, DBUSMENU_INTERFACE, - "ItemPropertiesUpdated", + "ItemsPropertiesUpdated", g_variant_new_tuple(megadata, 2), NULL); } else { |