aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-11-15 14:46:12 -0600
committerTed Gould <ted@gould.cx>2010-11-15 14:46:12 -0600
commitcbabf67cabb66079fa89d3972fea2aaee9543b5e (patch)
treeee453f69e5cef4fd889db6cc0b8d226a5d4842ec
parenta03c508bbeb1267d2f3e9062f5d75b5fdbee9b05 (diff)
downloadlibdbusmenu-cbabf67cabb66079fa89d3972fea2aaee9543b5e.tar.gz
libdbusmenu-cbabf67cabb66079fa89d3972fea2aaee9543b5e.tar.bz2
libdbusmenu-cbabf67cabb66079fa89d3972fea2aaee9543b5e.zip
Changing the prototypes for the get_properties wrappers
-rw-r--r--libdbusmenu-glib/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c
index 23981de..c206e47 100644
--- a/libdbusmenu-glib/client.c
+++ b/libdbusmenu-glib/client.c
@@ -1150,7 +1150,7 @@ menuitem_get_properties_cb (GVariant * properties, GError * error, gpointer data
is getting recycled with the update, but we think might have prop
changes. */
static void
-menuitem_get_properties_replace_cb (GDBusProxy * proxy, GHashTable * properties, GError * error, gpointer data)
+menuitem_get_properties_replace_cb (GVariant * properties, GError * error, gpointer data)
{
g_return_if_fail(DBUSMENU_IS_MENUITEM(data));
gboolean have_error = FALSE;
@@ -1181,7 +1181,7 @@ menuitem_get_properties_replace_cb (GDBusProxy * proxy, GHashTable * properties,
/* This is a different get properites call back that also sends
new signals. It basically is a small wrapper around the original. */
static void
-menuitem_get_properties_new_cb (GDBusProxy * proxy, GHashTable * properties, GError * error, gpointer data)
+menuitem_get_properties_new_cb (GVariant * properties, GError * error, gpointer data)
{
g_return_if_fail(data != NULL);
newItemPropData * propdata = (newItemPropData *)data;