diff options
author | Robert Tari <robert@tari.in> | 2022-08-19 20:07:24 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-02-02 09:57:36 +0100 |
commit | 0231964daf69d1043ef35de3ff1a5a906cbcc244 (patch) | |
tree | 229a3c079aa602f4a9076634eea1469789e9dd30 /src | |
parent | d305bdac70063c544e5893798ca9569a1903f53b (diff) | |
download | libayatana-appindicator-0231964daf69d1043ef35de3ff1a5a906cbcc244.tar.gz libayatana-appindicator-0231964daf69d1043ef35de3ff1a5a906cbcc244.tar.bz2 libayatana-appindicator-0231964daf69d1043ef35de3ff1a5a906cbcc244.zip |
src/app-indicator.c: Fix wrong function signatures
Diffstat (limited to 'src')
-rw-r--r-- | src/app-indicator.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index 9b53523..ba05871 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -578,6 +578,7 @@ app_indicator_class_init (AppIndicatorClass *klass) /** * AppIndicator::new-icon-theme-path: * @arg0: The #AppIndicator object + * @arg1: The icon theme path * * Signaled when there is a new icon set for the * object. @@ -1921,7 +1922,7 @@ app_indicator_set_attention_icon (AppIndicator *self, const gchar *icon_name) * app_indicator_set_attention_icon_full: * @self: The #AppIndicator object to use * @icon_name: The name of the attention icon to set for this indicator - * @icon_desc: A textual description of the icon + * @icon_desc: (nullable): A textual description of the icon * * Wrapper function for property #AppIndicator:attention-icon-name. */ @@ -1998,7 +1999,7 @@ app_indicator_set_icon (AppIndicator *self, const gchar *icon_name) * app_indicator_set_icon_full: * @self: The #AppIndicator object to use * @icon_name: The icon name to set. - * @icon_desc: A textual description of the icon for accessibility + * @icon_desc: (nullable): A textual description of the icon for accessibility * * Sets the default icon to use when the status is active but * not set to attention. In most cases, this should be the |