diff options
author | Michael Terry <mike@mterry.name> | 2011-04-19 13:54:37 -0400 |
---|---|---|
committer | Michael Terry <mike@mterry.name> | 2011-04-19 13:54:37 -0400 |
commit | c76c9af81ecf4f8f9073f1440ed129f02d71b188 (patch) | |
tree | 185f63e6b2a71086adb401820d5bcc4a25c1beab /libdbusmenu-glib | |
parent | d6e3ac7ddd67f862db0fc7b8cf71d015326b1eac (diff) | |
download | libdbusmenu-c76c9af81ecf4f8f9073f1440ed129f02d71b188.tar.gz libdbusmenu-c76c9af81ecf4f8f9073f1440ed129f02d71b188.tar.bz2 libdbusmenu-c76c9af81ecf4f8f9073f1440ed129f02d71b188.zip |
fix typo that prevented Qt apps from sending some property updates
Diffstat (limited to 'libdbusmenu-glib')
-rw-r--r-- | libdbusmenu-glib/client.c | 2 |
1 files changed, 1 insertions, 1 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; |