mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-03 07:53:39 +02:00
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:
@@ -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];
|
||||
|
Reference in New Issue
Block a user