diff options
author | Wolfgang Ulbrich <[email protected]> | 2015-11-05 14:45:05 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2015-11-05 14:45:05 +0100 |
commit | fed38d6cf6f8141a8639723c6c5ccd5267fc5cc6 (patch) | |
tree | bab8326ed086fbc33b0959e9569d225fdcc2a4a9 /src/themes/nodoka | |
parent | 743dcd2ce95eb00c4713588338eba4feb0ae2e9f (diff) | |
download | mate-notification-daemon-fed38d6cf6f8141a8639723c6c5ccd5267fc5cc6.tar.bz2 mate-notification-daemon-fed38d6cf6f8141a8639723c6c5ccd5267fc5cc6.tar.xz |
GTK3 themes: fix deprecated usage of GTK_STOCK_CLOSE
taken from:
https://git.gnome.org/browse/notification-daemon/commit/?id=9d38817
Diffstat (limited to 'src/themes/nodoka')
-rw-r--r-- | src/themes/nodoka/nodoka-theme.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/themes/nodoka/nodoka-theme.c b/src/themes/nodoka/nodoka-theme.c index 2adea4d..6276ad8 100644 --- a/src/themes/nodoka/nodoka-theme.c +++ b/src/themes/nodoka/nodoka-theme.c @@ -943,7 +943,11 @@ create_notification(UrlClickedCb url_clicked) atk_object_set_name(atkobj, ""); atk_object_set_description(atkobj, "Closes the notification."); +#if GTK_CHECK_VERSION (3, 10, 0) + image = gtk_image_new_from_icon_name ("window-close", GTK_ICON_SIZE_MENU); +#else image = gtk_image_new_from_stock(GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU); +#endif gtk_widget_show(image); gtk_container_add(GTK_CONTAINER(close_button), image); |