From 4e64ecb701062f1b7962b2024f93fc1c6ebee13d Mon Sep 17 00:00:00 2001 From: Wolfgang Ulbrich Date: Thu, 19 Nov 2015 16:33:11 +0100 Subject: [PATCH] Gtk+-3.10: don't use deprecated gtk_icon_size_lookup_for_settings --- pluma/pluma-close-button.c | 4 ++++ pluma/pluma-tab.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/pluma/pluma-close-button.c b/pluma/pluma-close-button.c index ab6ef4a..be0cc42 100644 --- a/pluma/pluma-close-button.c +++ b/pluma/pluma-close-button.c @@ -30,8 +30,12 @@ pluma_close_button_style_set (GtkWidget *button, { gint h, w; +#if GTK_CHECK_VERSION (3, 10, 0) + gtk_icon_size_lookup (GTK_ICON_SIZE_MENU, &w, &h); +#else gtk_icon_size_lookup_for_settings (gtk_widget_get_settings (button), GTK_ICON_SIZE_MENU, &w, &h); +#endif gtk_widget_set_size_request (button, w + 2, h + 2); diff --git a/pluma/pluma-tab.c b/pluma/pluma-tab.c index d06aa21..11407b4 100644 --- a/pluma/pluma-tab.c +++ b/pluma/pluma-tab.c @@ -1868,10 +1868,14 @@ _pluma_tab_get_icon (PlumaTab *tab) theme = gtk_icon_theme_get_for_screen (screen); g_return_val_if_fail (theme != NULL, NULL); +#if GTK_CHECK_VERSION (3, 10, 0) + gtk_icon_size_lookup (GTK_ICON_SIZE_MENU, NULL, &icon_size); +#else gtk_icon_size_lookup_for_settings (gtk_widget_get_settings (GTK_WIDGET (tab)), GTK_ICON_SIZE_MENU, NULL, &icon_size); +#endif switch (tab->priv->state) {