summaryrefslogtreecommitdiffstats
path: root/kturtle
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 23:14:15 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 23:14:15 -0500
commitd676ed93d07eb9c04ac123f7c74467b357dd2caf (patch)
tree3d51d80e6d822018d927aa8ce9d658ae42a13889 /kturtle
parent168eac468e82be9557f64cb30feed7a83e1fba74 (diff)
downloadtdeedu-d676ed93d07eb9c04ac123f7c74467b357dd2caf.tar.gz
tdeedu-d676ed93d07eb9c04ac123f7c74467b357dd2caf.zip
Bring unindent and indent icons into XDG compliance
Diffstat (limited to 'kturtle')
-rw-r--r--kturtle/src/kturtle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kturtle/src/kturtle.cpp b/kturtle/src/kturtle.cpp
index 085b0175..74b33300 100644
--- a/kturtle/src/kturtle.cpp
+++ b/kturtle/src/kturtle.cpp
@@ -164,8 +164,8 @@ void MainWindow::setupActions()
// Tools actions
colorpicker = new TDEToggleAction(i18n("&Color Picker"), "colorize", ALT+Key_C, TQT_TQOBJECT(this), TQT_SLOT(slotColorPicker()), ac, "color_picker");
- new TDEAction(i18n("&Indent"), "indent", CTRL+Key_I, TQT_TQOBJECT(this), TQT_SLOT(slotIndent()), ac, "edit_indent");
- new TDEAction(i18n("&Unindent"), "unindent", CTRL+SHIFT+Key_I, TQT_TQOBJECT(this), TQT_SLOT(slotUnIndent()), ac, "edit_unindent");
+ new TDEAction(i18n("&Indent"), "format-indent-more", CTRL+Key_I, TQT_TQOBJECT(this), TQT_SLOT(slotIndent()), ac, "edit_indent");
+ new TDEAction(i18n("&Unindent"), "format-indent-less", CTRL+SHIFT+Key_I, TQT_TQOBJECT(this), TQT_SLOT(slotUnIndent()), ac, "edit_unindent");
new TDEAction(i18n("Cl&ean Indentation"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotCleanIndent()), ac, "edit_cleanIndent");
new TDEAction(i18n("Co&mment"), 0, CTRL+Key_D, TQT_TQOBJECT(this), TQT_SLOT(slotComment()), ac, "edit_comment");
new TDEAction(i18n("Unc&omment"), 0, CTRL+SHIFT+Key_D, TQT_TQOBJECT(this), TQT_SLOT(slotUnComment()), ac, "edit_uncomment");