diff options
author | Ted Gould <ted@gould.cx> | 2010-04-01 13:32:42 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-04-01 13:32:42 -0500 |
commit | 14aebe465a014d42381f73b8dea3386357d14098 (patch) | |
tree | becc17aa051eb47e7a24f2191e67ef4e5ab2e16d /src/libappindicator | |
parent | 5aa064c48d946062b84ea4fe70572cee087766ec (diff) | |
download | ayatana-indicator-application-14aebe465a014d42381f73b8dea3386357d14098.tar.gz ayatana-indicator-application-14aebe465a014d42381f73b8dea3386357d14098.tar.bz2 ayatana-indicator-application-14aebe465a014d42381f73b8dea3386357d14098.zip |
Adding in documentation for the private structure.
Diffstat (limited to 'src/libappindicator')
-rw-r--r-- | src/libappindicator/app-indicator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libappindicator/app-indicator.h b/src/libappindicator/app-indicator.h index 03656ce..d490c8c 100644 --- a/src/libappindicator/app-indicator.h +++ b/src/libappindicator/app-indicator.h @@ -189,6 +189,7 @@ struct _AppIndicatorClass { /** AppIndicator: @parent: Parent object. + @priv: Internal data. A application indicator represents the values that are needed to show a unique status in the panel for an application. In general, applications @@ -198,7 +199,7 @@ struct _AppIndicatorClass { struct _AppIndicator { GObject parent; - AppIndicatorPrivate *priv; + AppIndicatorPrivate *priv; }; /* GObject Stuff */ |