diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2010-04-01 23:41:58 +0200 |
---|---|---|
committer | Sebastien Bacher <seb128@ubuntu.com> | 2010-04-01 23:41:58 +0200 |
commit | 40b74a14850bacbef753ed1e697de51f68a7ee62 (patch) | |
tree | 0bd17cc965406feb51b5f463a351526408cc9950 /src/libappindicator/app-indicator.h | |
parent | fd1ec3c4cf17a488d072c63660bc818562cd9448 (diff) | |
parent | 734b874a2c463115e69d40fa48db8ebbc5996289 (diff) | |
download | libayatana-appindicator-40b74a14850bacbef753ed1e697de51f68a7ee62.tar.gz libayatana-appindicator-40b74a14850bacbef753ed1e697de51f68a7ee62.tar.bz2 libayatana-appindicator-40b74a14850bacbef753ed1e697de51f68a7ee62.zip |
releasing version 0.0.19-0ubuntu10.0.19-0ubuntu1
Diffstat (limited to 'src/libappindicator/app-indicator.h')
-rw-r--r-- | src/libappindicator/app-indicator.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/libappindicator/app-indicator.h b/src/libappindicator/app-indicator.h index 03656ce..549ab35 100644 --- a/src/libappindicator/app-indicator.h +++ b/src/libappindicator/app-indicator.h @@ -188,17 +188,22 @@ struct _AppIndicatorClass { /** AppIndicator: - @parent: Parent object. A application indicator represents the values that are needed to show a unique status in the panel for an application. In general, applications should try to fit in the other indicators that are available on the panel before using this. But, sometimes it is necissary. */ +/* Private fields + @parent: Parent object. + @priv: Internal data. +*/ struct _AppIndicator { + /*< Private >*/ GObject parent; - AppIndicatorPrivate *priv; + /*< Private >*/ + AppIndicatorPrivate *priv; }; /* GObject Stuff */ |