From 18f666aea588a5dcfb986eae7ed3949dd1015577 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Tue, 18 Oct 2016 17:49:43 +0200 Subject: [PATCH] ScxmlEditor: Use Utils::Icons::SNAPSHOT_TOOLBAR Change-Id: Ic7b873aac60bf07780a11dbcfae10dac6a81035b Reviewed-by: Alessandro Portale --- src/plugins/scxmleditor/common/common.qrc | 1 - .../scxmleditor/common/images/screenshot.png | Bin 1321 -> 0 bytes .../plugin_interface/actionhandler.cpp | 2 +- 3 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 src/plugins/scxmleditor/common/images/screenshot.png diff --git a/src/plugins/scxmleditor/common/common.qrc b/src/plugins/scxmleditor/common/common.qrc index 3106d4ae190..d0fdb605dd1 100644 --- a/src/plugins/scxmleditor/common/common.qrc +++ b/src/plugins/scxmleditor/common/common.qrc @@ -24,7 +24,6 @@ images/navigator.png images/parallel.png images/parallel_icon.png - images/screenshot.png images/state.png images/state_color.png images/statistics.png diff --git a/src/plugins/scxmleditor/common/images/screenshot.png b/src/plugins/scxmleditor/common/images/screenshot.png deleted file mode 100644 index 1f2378ab38dfd46b389f2c6bbd6e74a63fe7164e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1321 zcmeAS@N?(olHy`uVBq!ia0y~yU}ykg4rT@hhA$5${$yZaGz#zuab;j&FdhY@guvwB zOI-{M45=kSe!&b3j7-cdtZbZIy!;}f;u2Ewib^UP+6IQkrgo0bu5O-Q-u?lBLE({6 z35m(6=@~hNB~`Wc4UNt1y%Q%-ojzmX%2lh^t>1R=(BUITkDs`3{m$Kc_a8of{^Ir9 zk6*ri`~LIS?>~S4**YDTVqjo)^mK6yskrraR(AO%1Br(FKBokBb{=rq(=grl_<=(K zZG7y-23JC7C^54|2mbp1ze)btP0wBTq$kPx&+ETC`-`IIWb=~@EKH3K3IZG~d=5U{ zl3^mZD*l}k)i-w%;Z4~5*SYv)X7%Ja<~Q@QN(& z3pW0Lbn$Yz{Z7sr&$VkAcM046$c;R{AoOH<(!&Cs$?LbUiLmaATl<*f!Dac$kGeD0 zi>P|Ld+&YO)OFzL-+FI}rrpciTGRhloysWkzWUpki%EXn^Z=Ip-cwpdM+~kzG6+U~ z)c+t+J!MB^QIPM9Wlz>W4); zV_wxch8InKtUO^?$@IsblWG{5IF4;DN?($>xNlA``}%o_D(WGut0t}MWZo%dcIEii z7>DbwK~tACOuA6&uxsTc!7SsouUlH2{1en(Yw7dkv+;6Uc~-jlE|5R?+AScgchMCi zNzs>=g(9wOoF(XRQ)dH@OG2%qXTmI{WATor+#%dYJbZjLIlpw=pDH(N`x^t_mTwxI zQ$B2PxcusK7Tbp#LaK~P|Ie%pW6J6~5%Q9Q=fjGGvsIJUvwnQRDB36{C%QfI)$u}` zU9PSRn%q<02KDO5#V%BupuWu9nlb6pnP9;a4+3Sa8~NnsE>sdYyx6UbN!iBA%~c_1 zW3T~3Ki_|OraQYEek(lrCs{PVV~79IJL1akP8J@cOBL~9+qw2?TwP_Z=d}?X)VjK^}-ym f1kc3%k7?<50k7FB%oQ0J7#KWV{an^LB{Ts5FZ=~y diff --git a/src/plugins/scxmleditor/plugin_interface/actionhandler.cpp b/src/plugins/scxmleditor/plugin_interface/actionhandler.cpp index d2cfe7f5ff6..9024bc1f340 100644 --- a/src/plugins/scxmleditor/plugin_interface/actionhandler.cpp +++ b/src/plugins/scxmleditor/plugin_interface/actionhandler.cpp @@ -55,7 +55,7 @@ ActionHandler::ActionHandler(QObject *parent) { Utils::Icon({{":/utils/images/editcopy.png", Utils::Theme::IconsBaseColor}}), AH::tr("Copy"), AH::tr("Copy (Ctrl + C)"), "Ctrl+C", false }, { Utils::Icon({{":/utils/images/editcut.png", Utils::Theme::IconsBaseColor}}), AH::tr("Cut"), AH::tr("Cut (Ctrl + X)"), "Ctrl+X", false }, { Utils::Icon({{":/utils/images/editpaste.png", Utils::Theme::IconsBaseColor}}), AH::tr("Paste"), AH::tr("Paste (Ctrl + V)"), "Ctrl+V", false }, - { Utils::Icon(":/scxmleditor/images/screenshot.png"), AH::tr("Screenshot"), AH::tr("Screenshot (Ctrl + Shift + C)"), "Ctrl+Shift+C", false }, + { Utils::Icons::SNAPSHOT_TOOLBAR, AH::tr("Screenshot"), AH::tr("Screenshot (Ctrl + Shift + C)"), "Ctrl+Shift+C", false }, { Utils::Icon(":/scxmleditor/images/icon-export-canvas.png"), AH::tr("Export to Image"), AH::tr("Export to Image"), "Ctrl+Shift+E", false }, { Utils::Icon(":/scxmleditor/images/fullnamespace.png"), AH::tr("Toggle Full Namespace"), AH::tr("Toggle Full Namespace"), "Ctrl+Shift+N", true },