diff options
author | raveit65 <[email protected]> | 2018-08-07 22:41:45 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-08-07 22:58:55 +0200 |
commit | 87a2f26f7b3b66184d130a8d4400fbbbf620a902 (patch) | |
tree | 7265142debf2956f923b6c8c27a29012918f8451 /applets/notification_area/system-tray | |
parent | 4bff2130a7893940b65b65c73fded76394ee768b (diff) | |
download | mate-panel-87a2f26f7b3b66184d130a8d4400fbbbf620a902.tar.bz2 mate-panel-87a2f26f7b3b66184d130a8d4400fbbbf620a902.tar.xz |
Change GTK_CHECK_VERSION to match next gtk+ release
Diffstat (limited to 'applets/notification_area/system-tray')
-rw-r--r-- | applets/notification_area/system-tray/na-tray-child.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applets/notification_area/system-tray/na-tray-child.c b/applets/notification_area/system-tray/na-tray-child.c index c8f022a3..06540625 100644 --- a/applets/notification_area/system-tray/na-tray-child.c +++ b/applets/notification_area/system-tray/na-tray-child.c @@ -115,7 +115,7 @@ na_tray_child_style_set (GtkWidget *widget, */ } -#if !GTK_CHECK_VERSION (3, 22, 31) +#if !GTK_CHECK_VERSION (3, 23, 0) static void na_tray_child_get_preferred_width (GtkWidget *widget, gint *minimal_width, @@ -384,7 +384,7 @@ na_tray_child_class_init (NaTrayChildClass *klass) widget_class->style_set = na_tray_child_style_set; widget_class->realize = na_tray_child_realize; -#if !GTK_CHECK_VERSION (3, 22, 31) +#if !GTK_CHECK_VERSION (3, 23, 0) widget_class->get_preferred_width = na_tray_child_get_preferred_width; widget_class->get_preferred_height = na_tray_child_get_preferred_height; #endif |