summaryrefslogtreecommitdiffstats
path: root/tdehtml
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:51:34 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:51:34 -0500
commitd2ac3c618323d97084b0c1399ca28e6b41184de4 (patch)
tree2291ff8530e3eb87204c379d031207fe79f93639 /tdehtml
parentaf586d3223f7971c614ff38d0a6969d3d2dfd715 (diff)
downloadtdelibs-d2ac3c618323d97084b0c1399ca28e6b41184de4.tar.gz
tdelibs-d2ac3c618323d97084b0c1399ca28e6b41184de4.zip
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'tdehtml')
-rw-r--r--tdehtml/ecma/kjs_debugwin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdehtml/ecma/kjs_debugwin.cpp b/tdehtml/ecma/kjs_debugwin.cpp
index b7bd23de3..df2e24d37 100644
--- a/tdehtml/ecma/kjs_debugwin.cpp
+++ b/tdehtml/ecma/kjs_debugwin.cpp
@@ -81,7 +81,7 @@ SourceDisplay::SourceDisplay(KJSDebugWin *debugWin, TQWidget *parent, const char
{
verticalScrollBar()->setLineStep(TQFontMetrics(m_font).height());
viewport()->setBackgroundMode(TQt::NoBackground);
- m_breakpointIcon = TDEGlobal::iconLoader()->loadIcon("stop",TDEIcon::Small);
+ m_breakpointIcon = TDEGlobal::iconLoader()->loadIcon("process-stop",TDEIcon::Small);
}
SourceDisplay::~SourceDisplay()
@@ -361,7 +361,7 @@ KJSDebugWin::KJSDebugWin(TQWidget *parent, const char *name)
m_execsAlloc = 0;
m_steppingDepth = 0;
- m_stopIcon = TDEGlobal::iconLoader()->loadIcon("stop",TDEIcon::Small);
+ m_stopIcon = TDEGlobal::iconLoader()->loadIcon("process-stop",TDEIcon::Small);
m_emptyIcon = TQPixmap(m_stopIcon.width(),m_stopIcon.height());
TQBitmap emptyMask(m_stopIcon.width(),m_stopIcon.height(),true);
m_emptyIcon.setMask(emptyMask);
@@ -454,7 +454,7 @@ KJSDebugWin::KJSDebugWin(TQWidget *parent, const char *name)
scCont.append(KKeySequence(KKey(Qt::Key_F9)));
m_continueAction = new TDEAction(i18n("&Continue"),"dbgrun",scCont,TQT_TQOBJECT(this),TQT_SLOT(slotContinue()),
m_actionCollection,"cont");
- m_stopAction = new TDEAction(i18n("St&op"),"stop",TDEShortcut(Qt::Key_F4),TQT_TQOBJECT(this),TQT_SLOT(slotStop()),
+ m_stopAction = new TDEAction(i18n("St&op"),"process-stop",TDEShortcut(Qt::Key_F4),TQT_TQOBJECT(this),TQT_SLOT(slotStop()),
m_actionCollection,"stop");
m_breakAction = new TDEAction(i18n("&Break at Next Statement"),"dbgrunto",TDEShortcut(Qt::Key_F8),TQT_TQOBJECT(this),TQT_SLOT(slotBreakNext()),
m_actionCollection,"breaknext");