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 /libmate-panel-applet/mate-panel-applet.c | |
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 'libmate-panel-applet/mate-panel-applet.c')
-rw-r--r-- | libmate-panel-applet/mate-panel-applet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmate-panel-applet/mate-panel-applet.c b/libmate-panel-applet/mate-panel-applet.c index 04863304..373f44aa 100644 --- a/libmate-panel-applet/mate-panel-applet.c +++ b/libmate-panel-applet/mate-panel-applet.c @@ -1058,7 +1058,7 @@ mate_panel_applet_get_preferred_width (GtkWidget *widget, minimum_width, natural_width); -#if !GTK_CHECK_VERSION (3, 22, 31) +#if !GTK_CHECK_VERSION (3, 23, 0) MatePanelApplet *applet = MATE_PANEL_APPLET (widget); if (applet->priv->out_of_process) { /* Out-of-process applets end up scaled up doubly with GTK 3.22. @@ -1082,7 +1082,7 @@ mate_panel_applet_get_preferred_height (GtkWidget *widget, minimum_height, natural_height); -#if !GTK_CHECK_VERSION (3, 22, 31) +#if !GTK_CHECK_VERSION (3, 23, 0) MatePanelApplet *applet = MATE_PANEL_APPLET (widget); if (applet->priv->out_of_process) { gint scale; |