diff options
author | Ted Gould <ted@gould.cx> | 2011-02-24 21:55:08 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-02-24 21:55:08 -0600 |
commit | 2c1ee7d68b43b4e1ef7e6f9cac42594639fc5edf (patch) | |
tree | 9efe30d8235b119c5def660bdb2bfa1a7e25be47 /src/indicator-application.c | |
parent | 56bc4ef42f82379257b856124da93f782d5cdee1 (diff) | |
parent | c893dfdc92e289aa8b810d35a0ee4753500e5919 (diff) | |
download | ayatana-indicator-application-2c1ee7d68b43b4e1ef7e6f9cac42594639fc5edf.tar.gz ayatana-indicator-application-2c1ee7d68b43b4e1ef7e6f9cac42594639fc5edf.tar.bz2 ayatana-indicator-application-2c1ee7d68b43b4e1ef7e6f9cac42594639fc5edf.zip |
Sync with U.Desktop
Diffstat (limited to 'src/indicator-application.c')
-rw-r--r-- | src/indicator-application.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indicator-application.c b/src/indicator-application.c index cd83bdf..c18c2b0 100644 --- a/src/indicator-application.c +++ b/src/indicator-application.c @@ -279,7 +279,7 @@ service_proxy_cb (GObject * object, GAsyncResult * res, gpointer user_data) } if (error != NULL) { - g_error("Could not grab DBus proxy for %s: %s", INDICATOR_APPLICATION_DBUS_ADDR, error->message); + g_critical("Could not grab DBus proxy for %s: %s", INDICATOR_APPLICATION_DBUS_ADDR, error->message); g_error_free(error); return; } @@ -456,7 +456,7 @@ application_added (IndicatorApplication * application, const gchar * iconname, g g_debug("Building new application entry: %s with icon: %s at position %i", dbusaddress, iconname, position); IndicatorApplicationPrivate * priv = INDICATOR_APPLICATION_GET_PRIVATE(application); - ApplicationEntry * app = g_new(ApplicationEntry, 1); + ApplicationEntry * app = g_new0(ApplicationEntry, 1); app->old_service = FALSE; app->icon_theme_path = NULL; |