diff options
author | Ted Gould <ted@gould.cx> | 2010-01-06 22:12:30 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-06 22:12:30 -0600 |
commit | 8795c1497d1f9979076ef510a5d6c34ee288f242 (patch) | |
tree | 950a9893a7d9767af09c783d684321b3e3207bad | |
parent | ded741c03b1ece0e7da78a3c37e7238b2bb9441e (diff) | |
download | libdbusmenu-8795c1497d1f9979076ef510a5d6c34ee288f242.tar.gz libdbusmenu-8795c1497d1f9979076ef510a5d6c34ee288f242.tar.bz2 libdbusmenu-8795c1497d1f9979076ef510a5d6c34ee288f242.zip |
Building the dbus proxies if the guy we're trying to connect to doesn't exist.
-rw-r--r-- | libdbusmenu-glib/client.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c index 59494a3..c60af84 100644 --- a/libdbusmenu-glib/client.c +++ b/libdbusmenu-glib/client.c @@ -471,6 +471,7 @@ build_proxies (DbusmenuClient * client) if (error != NULL) { g_warning("Unable to get property proxy for %s on %s: %s", priv->dbus_name, priv->dbus_object, error->message); g_error_free(error); + build_dbus_proxy(client); return; } g_object_add_weak_pointer(G_OBJECT(priv->propproxy), (gpointer *)&priv->propproxy); @@ -484,6 +485,7 @@ build_proxies (DbusmenuClient * client) if (error != NULL) { g_warning("Unable to get dbusmenu proxy for %s on %s: %s", priv->dbus_name, priv->dbus_object, error->message); g_error_free(error); + build_dbus_proxy(client); return; } g_object_add_weak_pointer(G_OBJECT(priv->menuproxy), (gpointer *)&priv->menuproxy); |