summaryrefslogtreecommitdiffstats
path: root/quanta/treeviews
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:52:19 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:52:19 -0500
commite12d7923a7bef0cbc7a5a702ffec61f5c25a30e6 (patch)
treed79bc3767501a532e1e2f2cd70ef7a4aeee4691d /quanta/treeviews
parent5ebe83623b61746d7ec87e82ab851b5b67ca26a0 (diff)
downloadtdewebdev-e12d7923a7bef0cbc7a5a702ffec61f5c25a30e6.tar.gz
tdewebdev-e12d7923a7bef0cbc7a5a702ffec61f5c25a30e6.zip
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'quanta/treeviews')
-rw-r--r--quanta/treeviews/scripttreeview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/treeviews/scripttreeview.cpp b/quanta/treeviews/scripttreeview.cpp
index be80b953..6a4e02a7 100644
--- a/quanta/treeviews/scripttreeview.cpp
+++ b/quanta/treeviews/scripttreeview.cpp
@@ -69,13 +69,13 @@ ScriptTreeView::ScriptTreeView(TQWidget *parent, const char *name )
url.setPath(qConfig.globalDataDir + resourceDir + "scripts/");
BaseTreeBranch *m_globalDir;
- m_globalDir = new BaseTreeBranch(this, url, i18n("Global Scripts"), SmallIcon("run"), true);
+ m_globalDir = new BaseTreeBranch(this, url, i18n("Global Scripts"), SmallIcon("system-run"), true);
addBranch(m_globalDir);
url.setPath(locateLocal("data", resourceDir + "scripts/"));
BaseTreeBranch *m_localDir;
- m_localDir = new BaseTreeBranch(this, url, i18n("Local Scripts"), SmallIcon("run"), true);
+ m_localDir = new BaseTreeBranch(this, url, i18n("Local Scripts"), SmallIcon("system-run"), true);
addBranch(m_localDir);
// here you define which files should not be visible for the users
@@ -85,7 +85,7 @@ ScriptTreeView::ScriptTreeView(TQWidget *parent, const char *name )
m_fileMenu = new TDEPopupMenu(this);
m_fileMenu->insertItem(SmallIcon("info"), i18n("&Description"), this, TQT_SLOT(slotProperties()));
- m_fileMenu->insertItem(SmallIcon("run"), i18n("&Run Script"), this, TQT_SLOT(slotRun()));
+ m_fileMenu->insertItem(SmallIcon("system-run"), i18n("&Run Script"), this, TQT_SLOT(slotRun()));
m_fileMenu->insertSeparator();
m_fileMenu->insertItem(i18n("&Edit Script"), this, TQT_SLOT(slotEditScript()));
m_fileMenu->insertItem(i18n("Edit in &Quanta"), this, TQT_SLOT(slotEditInQuanta()));