diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 14:24:31 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 14:24:31 -0500 |
commit | 207e13471364666e6a6fdceed64207f986899bbc (patch) | |
tree | 532ea96c80c56c4f9d6a24d36a2a704c96ee3815 /tdeprint/tools/escputil | |
parent | 6111385e9a4283e5f909753cdb690b1cbc9206ea (diff) | |
download | tdelibs-207e13471364666e6a6fdceed64207f986899bbc.tar.gz tdelibs-207e13471364666e6a6fdceed64207f986899bbc.zip |
Fix exec icon location and bring it into XDG compliance
Diffstat (limited to 'tdeprint/tools/escputil')
-rw-r--r-- | tdeprint/tools/escputil/escpwidget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeprint/tools/escputil/escpwidget.cpp b/tdeprint/tools/escputil/escpwidget.cpp index 9afff64ac..901d509c9 100644 --- a/tdeprint/tools/escputil/escpwidget.cpp +++ b/tdeprint/tools/escputil/escpwidget.cpp @@ -72,15 +72,15 @@ EscpWidget::EscpWidget(TQWidget *parent, const char *name) connect(&m_proc, TQT_SIGNAL(receivedStderr(TDEProcess*,char*,int)), TQT_SLOT(slotReceivedStderr(TDEProcess*,char*,int))); TQPushButton *cleanbtn = new TQPushButton(this, "-c"); - cleanbtn->setPixmap(DesktopIcon("exec")); + cleanbtn->setPixmap(DesktopIcon("application-x-executable")); TQPushButton *nozzlebtn = new TQPushButton(this, "-n"); - nozzlebtn->setPixmap(DesktopIcon("exec")); + nozzlebtn->setPixmap(DesktopIcon("application-x-executable")); TQPushButton *alignbtn = new TQPushButton(this, "-a"); - alignbtn->setPixmap(DesktopIcon("exec")); + alignbtn->setPixmap(DesktopIcon("application-x-executable")); TQPushButton *inkbtn = new TQPushButton(this, "-i"); inkbtn->setPixmap(DesktopIcon("tdeprint_inklevel")); TQPushButton *identbtn = new TQPushButton(this, "-d"); - identbtn->setPixmap(DesktopIcon("exec")); + identbtn->setPixmap(DesktopIcon("application-x-executable")); TQFont f(font()); f.setBold(true); |