diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-10-24 16:40:50 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-10-24 16:40:50 +0200 |
commit | c3c9e7977edfa0179b017d29deb3189a156235c4 (patch) | |
tree | 55e4cbb938da56d7d05dc45c14a0cd76150982c4 | |
parent | d89dee1bc480580faddedf5aada070a3feb8614c (diff) | |
download | libayatana-appindicator-c3c9e7977edfa0179b017d29deb3189a156235c4.tar.gz libayatana-appindicator-c3c9e7977edfa0179b017d29deb3189a156235c4.tar.bz2 libayatana-appindicator-c3c9e7977edfa0179b017d29deb3189a156235c4.zip |
API documentation: Suppress some warnings being thrown.
-rw-r--r-- | src/app-indicator.c | 8 | ||||
-rw-r--r-- | src/app-indicator.h | 9 |
2 files changed, 8 insertions, 9 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index b94b060..4df3d3f 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -57,9 +57,6 @@ License version 3 and version 2.1 along with this program. If not, see /** * AppIndicatorPrivate: - * All of the private data in an instance of an application indicator. - * - * Private Fields * @id: The ID of the indicator. Maps to AppIndicator:id. * @category: Which category the indicator is. Maps to AppIndicator:category. * @status: The status of the indicator. Maps to AppIndicator:status. @@ -67,6 +64,9 @@ License version 3 and version 2.1 along with this program. If not, see * @attention_icon_name: The name of the attention icon to use. Maps to AppIndicator:attention-icon-name. * @menu: The menu for this indicator. Maps to AppIndicator:menu * @watcher_proxy: The proxy connection to the watcher we're connected to. If we're not connected to one this will be %NULL. + * + * All of the private data in an instance of an application indicator. + * */ struct _AppIndicatorPrivate { /*< Private >*/ @@ -547,7 +547,7 @@ app_indicator_class_init (AppIndicatorClass *klass) * AppIndicator::new-label: * @arg0: The #AppIndicator object * @arg1: The string for the label - * @arg1: The string for the guide + * @arg2: The string for the guide * * Emitted when either #AppIndicator:label or #AppIndicator:label-guide are * changed. diff --git a/src/app-indicator.h b/src/app-indicator.h index 8ae20b0..b8f888a 100644 --- a/src/app-indicator.h +++ b/src/app-indicator.h @@ -233,15 +233,14 @@ struct _AppIndicatorClass { /** * AppIndicator: - * - * A application indicator represents the values that are needed to show a + * parent: Parent object. + * priv: Internal data. + * + * An 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 { GObject parent; |