aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-08-11 20:04:06 -0500
committerTed Gould <ted@gould.cx>2010-08-11 20:04:06 -0500
commite8b76a6a10b53e0cc4d34895fb396a5bc9ab4c54 (patch)
tree5b614f3333bc9e210b2619a95601a9a2bd727795
parentefd7be1cf7c80abc13c6d3bb3bc99cef18b8db7b (diff)
downloadayatana-indicator-application-e8b76a6a10b53e0cc4d34895fb396a5bc9ab4c54.tar.gz
ayatana-indicator-application-e8b76a6a10b53e0cc4d34895fb396a5bc9ab4c54.tar.bz2
ayatana-indicator-application-e8b76a6a10b53e0cc4d34895fb396a5bc9ab4c54.zip
Changing to a list, we're going to need to track who so when they disconnect we can know the state change.
-rw-r--r--src/application-service-appstore.c4
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;