summaryrefslogtreecommitdiffstats
path: root/tdecachegrind
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:51:18 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:51:18 -0500
commit2166880f2ba4e37d70d75ee5f9feb4ad6b2d5f20 (patch)
treec0899acbde782754761df4cb43d44807bbecfcdd /tdecachegrind
parent2762d81ca66d7106e62854f9cb1736cbd157e0f4 (diff)
downloadtdesdk-2166880f2ba4e37d70d75ee5f9feb4ad6b2d5f20.tar.gz
tdesdk-2166880f2ba4e37d70d75ee5f9feb4ad6b2d5f20.zip
Bring undo, redo, find, and revert icons into XDG compliance
Diffstat (limited to 'tdecachegrind')
-rw-r--r--tdecachegrind/tdecachegrind/callgraphview.cpp2
-rw-r--r--tdecachegrind/tdecachegrind/callitem.cpp2
-rw-r--r--tdecachegrind/tdecachegrind/instritem.cpp2
-rw-r--r--tdecachegrind/tdecachegrind/sourceitem.cpp2
-rw-r--r--tdecachegrind/tdecachegrind/toplevel.cpp4
5 files changed, 6 insertions, 6 deletions
diff --git a/tdecachegrind/tdecachegrind/callgraphview.cpp b/tdecachegrind/tdecachegrind/callgraphview.cpp
index 9f1df421..9a117e5f 100644
--- a/tdecachegrind/tdecachegrind/callgraphview.cpp
+++ b/tdecachegrind/tdecachegrind/callgraphview.cpp
@@ -1148,7 +1148,7 @@ CanvasEdgeLabel::CanvasEdgeLabel(CallGraphView* v, CanvasEdge* ce,
setPixmap(0, percentagePixmap(25,10,(int)(inclP+.5), TQt::blue, true));
if (e->call() && (e->call()->isRecursion() || e->call()->inCycle())) {
- TQString icon = "undo";
+ TQString icon = "edit-undo";
TDEIconLoader* loader = TDEApplication::kApplication()->iconLoader();
TQPixmap p= loader->loadIcon(icon, TDEIcon::Small, 0,
TDEIcon::DefaultState, 0, true);
diff --git a/tdecachegrind/tdecachegrind/callitem.cpp b/tdecachegrind/tdecachegrind/callitem.cpp
index 77bbc885..d40f1feb 100644
--- a/tdecachegrind/tdecachegrind/callitem.cpp
+++ b/tdecachegrind/tdecachegrind/callitem.cpp
@@ -145,7 +145,7 @@ void CallItem::updateCost()
TQPixmap p;
if (sameCycle && !selectedIsCycle && !shownIsCycle) {
- TQString icon = "undo";
+ TQString icon = "edit-undo";
TDEIconLoader* loader = TDEApplication::kApplication()->iconLoader();
p= loader->loadIcon(icon, TDEIcon::Small, 0,
TDEIcon::DefaultState, 0, true);
diff --git a/tdecachegrind/tdecachegrind/instritem.cpp b/tdecachegrind/tdecachegrind/instritem.cpp
index 2b7258d7..b07c6655 100644
--- a/tdecachegrind/tdecachegrind/instritem.cpp
+++ b/tdecachegrind/tdecachegrind/instritem.cpp
@@ -177,7 +177,7 @@ void InstrItem::updateCost()
TQString str;
TQPixmap p;
- TQString icon = "undo";
+ TQString icon = "edit-undo";
TDEIconLoader* loader = TDEApplication::kApplication()->iconLoader();
p= loader->loadIcon(icon, TDEIcon::Small, 0,
TDEIcon::DefaultState, 0, true);
diff --git a/tdecachegrind/tdecachegrind/sourceitem.cpp b/tdecachegrind/tdecachegrind/sourceitem.cpp
index d6e1c1a9..85713c14 100644
--- a/tdecachegrind/tdecachegrind/sourceitem.cpp
+++ b/tdecachegrind/tdecachegrind/sourceitem.cpp
@@ -161,7 +161,7 @@ void SourceItem::updateCost()
TQString str;
TQPixmap p;
- TQString icon = "undo";
+ TQString icon = "edit-undo";
TDEIconLoader* loader = TDEApplication::kApplication()->iconLoader();
p= loader->loadIcon(icon, TDEIcon::Small, 0,
TDEIcon::DefaultState, 0, true);
diff --git a/tdecachegrind/tdecachegrind/toplevel.cpp b/tdecachegrind/tdecachegrind/toplevel.cpp
index 3658aee9..bcee063f 100644
--- a/tdecachegrind/tdecachegrind/toplevel.cpp
+++ b/tdecachegrind/tdecachegrind/toplevel.cpp
@@ -528,7 +528,7 @@ void TopLevel::createMiscActions()
action->setWhatsThis( hint );
- _taDump = new TDEToggleAction( i18n( "&Force Dump" ), "redo",
+ _taDump = new TDEToggleAction( i18n( "&Force Dump" ), "edit-redo",
#if TDE_VERSION > 0x030190
// for KDE 3.2: TDEStdAccel::key is deprecated
TDEStdAccel::shortcut(TDEStdAccel::Redo),
@@ -650,7 +650,7 @@ void TopLevel::createMiscActions()
"<p>(*) Only if function grouping is switched on (e.g. ELF object grouping).");
_taExpanded->setWhatsThis( hint );
- _taCycles = new TDEToggleAction( i18n( "Do Cycle Detection" ), "undo",
+ _taCycles = new TDEToggleAction( i18n( "Do Cycle Detection" ), "edit-undo",
TDEShortcut(),
TQT_TQOBJECT(this), TQT_SLOT( toggleCycles() ), actionCollection(),
"view_cycles" );