aboutsummaryrefslogtreecommitdiff
path: root/src/app-indicator.h
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2022-07-15 23:37:01 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2023-02-02 09:57:36 +0100
commit694ab4eec294a93358f78a349c6df94c3b666126 (patch)
treed9a654fd20e9e75935c450b115076099eb99b857 /src/app-indicator.h
parent0231964daf69d1043ef35de3ff1a5a906cbcc244 (diff)
downloadlibayatana-appindicator-694ab4eec294a93358f78a349c6df94c3b666126.tar.gz
libayatana-appindicator-694ab4eec294a93358f78a349c6df94c3b666126.tar.bz2
libayatana-appindicator-694ab4eec294a93358f78a349c6df94c3b666126.zip
Fix all remaining build warnings
Diffstat (limited to 'src/app-indicator.h')
-rw-r--r--src/app-indicator.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app-indicator.h b/src/app-indicator.h
index 1532b91..c1bc9d6 100644
--- a/src/app-indicator.h
+++ b/src/app-indicator.h
@@ -52,13 +52,13 @@ G_BEGIN_DECLS
* Safely convert a #GObjectClass into a #AppIndicatorClass.
*/
/**
- * IS_APP_INDICATOR:
+ * APP_IS_INDICATOR:
* @obj: An #GObject to check
*
* Checks to see if @obj is in the object hierarchy of #AppIndicator.
*/
/**
- * IS_APP_INDICATOR_CLASS:
+ * APP_IS_INDICATOR_CLASS:
* @klass: An #GObjectClass to check
*
* Checks to see if @klass is in the object class hierarchy of #AppIndicatorClass.
@@ -73,8 +73,8 @@ G_BEGIN_DECLS
#define APP_INDICATOR_TYPE (app_indicator_get_type ())
#define APP_INDICATOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), APP_INDICATOR_TYPE, AppIndicator))
#define APP_INDICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), APP_INDICATOR_TYPE, AppIndicatorClass))
-#define IS_APP_INDICATOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), APP_INDICATOR_TYPE))
-#define IS_APP_INDICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), APP_INDICATOR_TYPE))
+#define APP_IS_INDICATOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), APP_INDICATOR_TYPE))
+#define APP_IS_INDICATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), APP_INDICATOR_TYPE))
#define APP_INDICATOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), APP_INDICATOR_TYPE, AppIndicatorClass))
/**