aboutsummaryrefslogtreecommitdiff
path: root/src/application-service-appstore.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-08-10 14:37:44 -0500
committerTed Gould <ted@gould.cx>2010-08-10 14:37:44 -0500
commit09e6c21971ee0c93b72ed8386911875c3f630a1c (patch)
treef09a86f35e1bf170a7c4d877696344c713e47976 /src/application-service-appstore.c
parent06c01943864dd55759d2f4372237b98d6262f903 (diff)
downloadayatana-indicator-application-09e6c21971ee0c93b72ed8386911875c3f630a1c.tar.gz
ayatana-indicator-application-09e6c21971ee0c93b72ed8386911875c3f630a1c.tar.bz2
ayatana-indicator-application-09e6c21971ee0c93b72ed8386911875c3f630a1c.zip
Adding in an ordering index for application structures
Diffstat (limited to 'src/application-service-appstore.c')
-rw-r--r--src/application-service-appstore.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c
index 0d9396b..cd827d3 100644
--- a/src/application-service-appstore.c
+++ b/src/application-service-appstore.c
@@ -81,6 +81,7 @@ struct _Application {
gchar * menu;
gchar * icon_theme_path;
gboolean currently_free;
+ guint ordering_index;
};
#define APPLICATION_SERVICE_APPSTORE_GET_PRIVATE(o) \
@@ -650,6 +651,7 @@ application_service_appstore_application_add (ApplicationServiceAppstore * appst
app->menu = NULL;
app->icon_theme_path = NULL;
app->currently_free = FALSE;
+ app->ordering_index = 0;
/* Get the DBus proxy for the NotificationItem interface */
GError * error = NULL;