summaryrefslogtreecommitdiff
path: root/applets/notification_area/na-tray.h
diff options
context:
space:
mode:
authorWolfgang Ulbrich <[email protected]>2016-02-11 07:45:16 +0100
committerWolfgang Ulbrich <[email protected]>2016-02-12 07:04:31 +0100
commit9081a2ee5cb1e173bfbd191e9630b11be299d081 (patch)
treef72c024039d29871994d895280ef67a00b8a2a68 /applets/notification_area/na-tray.h
parent9fbaadf2b1d3cbc1a3c752f099e10fde1e086b02 (diff)
downloadmate-panel-9081a2ee5cb1e173bfbd191e9630b11be299d081.tar.bz2
mate-panel-9081a2ee5cb1e173bfbd191e9630b11be299d081.tar.xz
GTK+3 notification-area: don't use deprecated GdkColor
Taken from: https://git.gnome.org/browse/gnome-panel/commit/?id=d1dd54e
Diffstat (limited to 'applets/notification_area/na-tray.h')
-rw-r--r--applets/notification_area/na-tray.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/applets/notification_area/na-tray.h b/applets/notification_area/na-tray.h
index 3e69ce6d..c3d3415e 100644
--- a/applets/notification_area/na-tray.h
+++ b/applets/notification_area/na-tray.h
@@ -65,10 +65,17 @@ void na_tray_set_padding (NaTray *tray,
void na_tray_set_icon_size (NaTray *tray,
gint icon_size);
void na_tray_set_colors (NaTray *tray,
+#if GTK_CHECK_VERSION (3, 0, 0)
+ GdkRGBA *fg,
+ GdkRGBA *error,
+ GdkRGBA *warning,
+ GdkRGBA *success);
+#else
GdkColor *fg,
GdkColor *error,
GdkColor *warning,
GdkColor *success);
+#endif
void na_tray_force_redraw (NaTray *tray);
G_END_DECLS