summaryrefslogtreecommitdiffstats
path: root/khexedit
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:52:07 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:52:07 -0500
commite0d45c96583226c49b825bdb76f430e4b934007d (patch)
tree5ef4ab3ab675a02b17d9588a132edbb48ee7704c /khexedit
parenta25a696e1de76f5bf6eaaf79785c2e0c16bae03d (diff)
downloadtdeutils-e0d45c96583226c49b825bdb76f430e4b934007d.tar.gz
tdeutils-e0d45c96583226c49b825bdb76f430e4b934007d.zip
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'khexedit')
-rw-r--r--khexedit/toplevel.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/khexedit/toplevel.cc b/khexedit/toplevel.cc
index 9886b37..ab4a211 100644
--- a/khexedit/toplevel.cc
+++ b/khexedit/toplevel.cc
@@ -143,7 +143,7 @@ actionCollection());
mAction.exportData = new TDEAction( i18n("E&xport..."), 0,
TQT_TQOBJECT(editor()), TQT_SLOT(exportDialog()), actionCollection(), "export" );
mAction.cancel = new TDEAction( i18n("&Cancel Operation"),
- "stop", 0, TQT_TQOBJECT(editor()), TQT_SLOT(stop()), actionCollection(), "cancel" );
+ "process-stop", 0, TQT_TQOBJECT(editor()), TQT_SLOT(stop()), actionCollection(), "cancel" );
mAction.readOnly = new TDEToggleAction( i18n("&Read Only"),
0, TQT_TQOBJECT(editor()), TQT_SLOT(toggleWriteProtection()),actionCollection(), "read_only" );
mAction.resizeLock = new TDEToggleAction( i18n("&Allow Resize"),
@@ -299,7 +299,7 @@ actionCollection());
hexView()->setPopupMenu( popup );
int id = 100;
- toolBar(0)->insertButton( MainBarIcon("lock"), id, TQT_SIGNAL(clicked()),
+ toolBar(0)->insertButton( MainBarIcon("system-lock-screen"), id, TQT_SIGNAL(clicked()),
TQT_TQOBJECT(editor()), TQT_SLOT(toggleWriteProtection()), true,
i18n("Toggle write protection") );
toolBar(0)->alignItemRight( id );
@@ -898,7 +898,7 @@ void KHexEdit::inputModeChanged( const SDisplayInputMode &mode )
}
else
{
- mWriteProtectButton->setIcon("lock");
+ mWriteProtectButton->setIcon("system-lock-screen");
}
}