diff options
author | Ted Gould <ted@gould.cx> | 2010-12-08 10:23:33 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-12-08 10:23:33 -0600 |
commit | 76196aa5c6bab4a47d4ed2238bfda9142c5c6ce4 (patch) | |
tree | ecebec1e2e180131595eac26a4eeeb493625c768 /tests/test-gtk-objects.c | |
parent | cc7b24b14152407bbaec45924da989bb8692a2c2 (diff) | |
parent | 1a73825600508b5d7f027641b05a682a8ac81f5e (diff) | |
download | libdbusmenu-76196aa5c6bab4a47d4ed2238bfda9142c5c6ce4.tar.gz libdbusmenu-76196aa5c6bab4a47d4ed2238bfda9142c5c6ce4.tar.bz2 libdbusmenu-76196aa5c6bab4a47d4ed2238bfda9142c5c6ce4.zip |
Switching from dbus-glib to GDBus
Diffstat (limited to 'tests/test-gtk-objects.c')
-rw-r--r-- | tests/test-gtk-objects.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-gtk-objects.c b/tests/test-gtk-objects.c index 726f404..30fc022 100644 --- a/tests/test-gtk-objects.c +++ b/tests/test-gtk-objects.c @@ -72,7 +72,7 @@ test_object_prop_pixbuf (void) g_object_unref(pixbuf); /* Check to see if it's set */ - const GValue * val = dbusmenu_menuitem_property_get_value(item, prop_name); + GVariant * val = dbusmenu_menuitem_property_get_variant(item, prop_name); g_assert(val != NULL); /* Get the pixbuf back! */ @@ -105,7 +105,7 @@ test_object_prop_shortcut (void) g_assert(success); /* Check for value */ - const GValue * val = dbusmenu_menuitem_property_get_value(item, DBUSMENU_MENUITEM_PROP_SHORTCUT); + GVariant * val = dbusmenu_menuitem_property_get_variant(item, DBUSMENU_MENUITEM_PROP_SHORTCUT); g_assert(val != NULL); /* Check to see if we love it */ |