diff -r 51e0448a7ae8 -r cbf89a92d224 pidgin/plugins/screencap.c --- a/pidgin/plugins/screencap.c Thu Oct 19 22:12:52 2017 -0500 +++ b/pidgin/plugins/screencap.c Thu Oct 19 22:20:34 2017 -0500 @@ -32,7 +32,7 @@ #include "gtkplugin.h" #include "gtkutils.h" #include "gtkwebviewtoolbar.h" -#include "pidginstock.h" +#include "pidginicon.h" #define SCRNCAP_SHOOTING_TIMEOUT 500 #define SCRNCAP_DEFAULT_COLOR "#FFFF00000000" @@ -718,7 +718,7 @@ return; action = gtk_action_new("InsertScreenshot", _("Insert Screens_hot..."), - NULL, PIDGIN_STOCK_TOOLBAR_INSERT_SCREENSHOT); + NULL, PIDGIN_ICON_CAMERA_PHOTO); gtk_action_set_is_important(action, TRUE); g_object_set_data_full(G_OBJECT(menu->menubar), "insert-screenshot-action", action, g_object_unref); @@ -807,7 +807,7 @@ g_return_if_fail(lean_view != NULL); action = gtk_action_new("InsertScreenshot", _("_Screenshot"), - _("Insert screenshot"), PIDGIN_STOCK_TOOLBAR_INSERT_SCREENSHOT); + _("Insert screenshot"), PIDGIN_ICON_CAMERA_PHOTO); gtk_action_set_is_important(action, TRUE); g_signal_connect(G_OBJECT(action), "activate", G_CALLBACK(scrncap_do_screenshot), webview);