diff options
author | Ted Gould <ted@gould.cx> | 2010-08-11 20:04:06 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-11 20:04:06 -0500 |
commit | e8b76a6a10b53e0cc4d34895fb396a5bc9ab4c54 (patch) | |
tree | 5b614f3333bc9e210b2619a95601a9a2bd727795 /src/application-service-appstore.c | |
parent | efd7be1cf7c80abc13c6d3bb3bc99cef18b8db7b (diff) | |
download | libayatana-appindicator-e8b76a6a10b53e0cc4d34895fb396a5bc9ab4c54.tar.gz libayatana-appindicator-e8b76a6a10b53e0cc4d34895fb396a5bc9ab4c54.tar.bz2 libayatana-appindicator-e8b76a6a10b53e0cc4d34895fb396a5bc9ab4c54.zip |
Changing to a list, we're going to need to track who so when they disconnect we can know the state change.
Diffstat (limited to 'src/application-service-appstore.c')
-rw-r--r-- | src/application-service-appstore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c index 83b64f3..9c34a79 100644 --- a/src/application-service-appstore.c +++ b/src/application-service-appstore.c @@ -85,7 +85,7 @@ struct _Application { gchar * label; gchar * guide; gboolean currently_free; - gint approved_by; + GList * approved_by; }; #define APPLICATION_SERVICE_APPSTORE_GET_PRIVATE(o) \ @@ -735,7 +735,7 @@ application_service_appstore_application_add (ApplicationServiceAppstore * appst app->label = NULL; app->guide = NULL; app->currently_free = FALSE; - app->approved_by = 0; + app->approved_by = NULL; /* Get the DBus proxy for the NotificationItem interface */ GError * error = NULL; |