diff options
author | Sense Hofstede <qense@ubuntu.com> | 2010-07-08 20:45:51 +0200 |
---|---|---|
committer | Sense Hofstede <qense@ubuntu.com> | 2010-07-08 20:45:51 +0200 |
commit | 925e3d8fea64fecdb16ce4a83750abb414f8687b (patch) | |
tree | 709f709c086e08ef59bef06237a54c68e0210846 /src/application-service-appstore.h | |
parent | cf31f2f0508305ba8363b505a6d5b402dcf8b96b (diff) | |
download | libayatana-appindicator-925e3d8fea64fecdb16ce4a83750abb414f8687b.tar.gz libayatana-appindicator-925e3d8fea64fecdb16ce4a83750abb414f8687b.tar.bz2 libayatana-appindicator-925e3d8fea64fecdb16ce4a83750abb414f8687b.zip |
Removed all but one calls to the APPLICATION_SERVICE_APPSTORE_GET_PRIVATE() macro
All references to the APPLICATION_SERVICE_APPSTORE_GET_PRIVATE() macro were removed
from src/application-service-appstore.c. This makes this file comply with the
recommended practise, which should reduce overhead.
Diffstat (limited to 'src/application-service-appstore.h')
-rw-r--r-- | src/application-service-appstore.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/application-service-appstore.h b/src/application-service-appstore.h index d2e0013..86d989b 100644 --- a/src/application-service-appstore.h +++ b/src/application-service-appstore.h @@ -38,6 +38,7 @@ G_BEGIN_DECLS typedef struct _ApplicationServiceAppstore ApplicationServiceAppstore; typedef struct _ApplicationServiceAppstoreClass ApplicationServiceAppstoreClass; +typedef struct _ApplicationServiceAppstorePrivate ApplicationServiceAppstorePrivate; struct _ApplicationServiceAppstoreClass { GObjectClass parent_class; @@ -49,6 +50,8 @@ struct _ApplicationServiceAppstoreClass { struct _ApplicationServiceAppstore { GObject parent; + + ApplicationServiceAppstorePrivate * priv; }; ApplicationServiceAppstore * application_service_appstore_new (AppLruFile * lrufile); |