diff options
author | Ted Gould <ted@gould.cx> | 2010-01-08 13:20:06 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-08 13:20:06 -0600 |
commit | f8e9a51b9aeeadc89c7e60abca531ab076cacca5 (patch) | |
tree | e79b3e2ac02c8603c732dec4b743afafb3493859 /src/application-service-appstore.c | |
parent | 7970210755bb4523c02b122c8a5eaa0d4e83bde7 (diff) | |
download | libayatana-appindicator-f8e9a51b9aeeadc89c7e60abca531ab076cacca5.tar.gz libayatana-appindicator-f8e9a51b9aeeadc89c7e60abca531ab076cacca5.tar.bz2 libayatana-appindicator-f8e9a51b9aeeadc89c7e60abca531ab076cacca5.zip |
Debug message cleanup.
Diffstat (limited to 'src/application-service-appstore.c')
-rw-r--r-- | src/application-service-appstore.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c index de8d914..4772e49 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -136,7 +136,6 @@ application_service_appstore_class_init (ApplicationServiceAppstoreClass *klass) _application_service_marshal_VOID__INT_STRING, G_TYPE_NONE, 2, G_TYPE_INT, G_TYPE_STRING, G_TYPE_NONE); - dbus_g_object_type_install_info(APPLICATION_SERVICE_APPSTORE_TYPE, &dbus_glib__application_service_server_object_info); @@ -249,7 +248,6 @@ get_position (Application * app) { GList * applistitem = g_list_find(priv->applications, app); if (applistitem == NULL) { - g_warning("Change the icon of an application that isn't in the application list?"); return -1; } @@ -322,6 +320,7 @@ apply_status (Application * app, ApplicationStatus status) if (app->status == status) { return; } + g_debug("Changing app status to: %d", status); ApplicationServiceAppstore * appstore = app->appstore; ApplicationServiceAppstorePrivate * priv = APPLICATION_SERVICE_APPSTORE_GET_PRIVATE(appstore); |