From 14aebe465a014d42381f73b8dea3386357d14098 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Thu, 1 Apr 2010 13:32:42 -0500 Subject: Adding in documentation for the private structure. --- src/libappindicator/app-indicator.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/libappindicator/app-indicator.h') 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 */ -- cgit v1.2.3 From ba28468540c9e9b45d66ad0fbba59c5e86ce2fd5 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Thu, 1 Apr 2010 15:23:36 -0500 Subject: Moving field documentation into a different comment block so that they're private --- src/libappindicator/app-indicator.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/libappindicator/app-indicator.h') diff --git a/src/libappindicator/app-indicator.h b/src/libappindicator/app-indicator.h index d490c8c..549ab35 100644 --- a/src/libappindicator/app-indicator.h +++ b/src/libappindicator/app-indicator.h @@ -188,17 +188,21 @@ 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 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; + /*< Private >*/ AppIndicatorPrivate *priv; }; -- cgit v1.2.3