GDBus: Don't take a GError for g_dbus_proxy_get_cached_property_names()

We stopped doing this for get_cached_property() so no reason to do it
here.

Signed-off-by: David Zeuthen <davidz@redhat.com>
This commit is contained in:
David Zeuthen
2010-05-13 17:10:15 -04:00
parent 3ca28ef718
commit 0e2c708bb2
3 changed files with 11 additions and 23 deletions

View File

@@ -26,7 +26,7 @@ print_properties (GDBusProxy *proxy)
g_print (" properties:\n");
property_names = g_dbus_proxy_get_cached_property_names (proxy, NULL);
property_names = g_dbus_proxy_get_cached_property_names (proxy);
for (n = 0; property_names != NULL && property_names[n] != NULL; n++)
{
const gchar *key = property_names[n];