summaryrefslogtreecommitdiffstats
path: root/languages/cpp/problemreporter.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:52:16 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:52:16 -0500
commitd06bb8b517afe956b59aed99122f80d3809498a0 (patch)
tree9a14247bc1749189777db14187c06d827f2edcfa /languages/cpp/problemreporter.cpp
parentf9a9d3f59ec01bfc6ac037e801c0decece9596cc (diff)
downloadtdevelop-d06bb8b517afe956b59aed99122f80d3809498a0.tar.gz
tdevelop-d06bb8b517afe956b59aed99122f80d3809498a0.zip
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'languages/cpp/problemreporter.cpp')
-rw-r--r--languages/cpp/problemreporter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/cpp/problemreporter.cpp b/languages/cpp/problemreporter.cpp
index eed7a5b6..c4143d03 100644
--- a/languages/cpp/problemreporter.cpp
+++ b/languages/cpp/problemreporter.cpp
@@ -162,7 +162,7 @@ m_markIface( 0 )
{
if ( KTextEditor::MarkInterfaceExtension* iface = dynamic_cast<KTextEditor::MarkInterfaceExtension*>( it.current() ) )
{
- iface->setPixmap( KTextEditor::MarkInterface::markType07, SmallIcon("stop") );
+ iface->setPixmap( KTextEditor::MarkInterface::markType07, SmallIcon("process-stop") );
}
++it;
}
@@ -404,7 +404,7 @@ void ProblemReporter::slotPartAdded( KParts::Part* part )
if( !iface )
return;
- iface->setPixmap( KTextEditor::MarkInterface::markType07, SmallIcon("stop") );
+ iface->setPixmap( KTextEditor::MarkInterface::markType07, SmallIcon("process-stop") );
}
TQString ProblemReporter::levelToString( int level ) const