summaryrefslogtreecommitdiff
path: root/applets/notification_area/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'applets/notification_area/main.c')
-rw-r--r--applets/notification_area/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/applets/notification_area/main.c b/applets/notification_area/main.c
index 3068642c..c17fb446 100644
--- a/applets/notification_area/main.c
+++ b/applets/notification_area/main.c
@@ -188,6 +188,7 @@ na_tray_applet_unrealize (GtkWidget *widget)
GTK_WIDGET_CLASS (na_tray_applet_parent_class)->unrealize (widget);
}
+#if GTK_CHECK_VERSION (3, 0, 0)
static inline gboolean
style_context_lookup_color (GtkStyleContext *context,
const gchar *color_name,
@@ -245,6 +246,7 @@ na_tray_applet_style_updated (GtkWidget *widget)
gtk_widget_style_get (widget, "icon-size", &icon_size, NULL);
na_tray_set_icon_size (applet->priv->tray, icon_size);
}
+#endif
#if GTK_CHECK_VERSION (3, 0, 0)
static void
@@ -313,7 +315,9 @@ na_tray_applet_class_init (NaTrayAppletClass *class)
widget_class->realize = na_tray_applet_realize;
widget_class->unrealize = na_tray_applet_unrealize;
+#if GTK_CHECK_VERSION (3, 0, 0)
widget_class->style_updated = na_tray_applet_style_updated;
+#endif
applet_class->change_background = na_tray_applet_change_background;
applet_class->change_orient = na_tray_applet_change_orient;