diff options
author | Ted Gould <ted@gould.cx> | 2010-07-08 14:17:39 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-07-08 14:17:39 -0500 |
commit | 1ddd622e7f2ab0142c826459e1a38fec926c4dc6 (patch) | |
tree | b9c191b54511f41086fe481cf813bf9561055bc6 /src/application-service-appstore.h | |
parent | a627c0751602989e29743391546ae63808bf3389 (diff) | |
parent | 925e3d8fea64fecdb16ce4a83750abb414f8687b (diff) | |
download | libayatana-appindicator-1ddd622e7f2ab0142c826459e1a38fec926c4dc6.tar.gz libayatana-appindicator-1ddd622e7f2ab0142c826459e1a38fec926c4dc6.tar.bz2 libayatana-appindicator-1ddd622e7f2ab0142c826459e1a38fec926c4dc6.zip |
Use a private pointer instead of a lookup.
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); |