@LarsGit223 commented on this pull request.
> @@ -51,6 +51,14 @@ G_BEGIN_DECLS #define GTK_STOCK_OPEN _("_Open") #define GTK_STOCK_CANCEL _("_Cancel") #endif + +/* Replace calls to gtk_image_menu_item_new_with_mnemonic() with call to + gtk_menu_item_new_with_mnemonic(). Starting from version 3.10.*/ +#if GTK_CHECK_VERSION(3, 10, 0) +#define gtk_image_menu_item_new_with_mnemonic(icon_info) \ + gtk_menu_item_new_with_mnemonic(icon_info)
Done.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.