diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 23:14:15 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 23:14:15 -0500 |
commit | ffb86e490f70f2bdb41f84847f578c0a8e78176d (patch) | |
tree | a91dcd82058198e5b83a42bed536bf50199b0c71 /kate/part | |
parent | d54ea8fe92fbaa6a2e66dd1e7c5aed02ebb3845d (diff) | |
download | tdelibs-ffb86e490f70f2bdb41f84847f578c0a8e78176d.tar.gz tdelibs-ffb86e490f70f2bdb41f84847f578c0a8e78176d.zip |
Bring unindent and indent icons into XDG compliance
Diffstat (limited to 'kate/part')
-rw-r--r-- | kate/part/kateview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kate/part/kateview.cpp b/kate/part/kateview.cpp index 9bd819ebe..f5593da9a 100644 --- a/kate/part/kateview.cpp +++ b/kate/part/kateview.cpp @@ -241,10 +241,10 @@ void KateView::setupActions() " when the view is resized.")); // setup Tools menu - a=new TDEAction(i18n("&Indent"), "indent", Qt::CTRL+Qt::Key_I, TQT_TQOBJECT(this), TQT_SLOT(indent()), ac, "tools_indent"); + a=new TDEAction(i18n("&Indent"), "format-indent-more", Qt::CTRL+Qt::Key_I, TQT_TQOBJECT(this), TQT_SLOT(indent()), ac, "tools_indent"); a->setWhatsThis(i18n("Use this to indent a selected block of text.<br><br>" "You can configure whether tabs should be honored and used or replaced with spaces, in the configuration dialog.")); - a=new TDEAction(i18n("&Unindent"), "unindent", Qt::CTRL+Qt::SHIFT+Qt::Key_I, TQT_TQOBJECT(this), TQT_SLOT(unIndent()), ac, "tools_unindent"); + a=new TDEAction(i18n("&Unindent"), "format-indent-less", Qt::CTRL+Qt::SHIFT+Qt::Key_I, TQT_TQOBJECT(this), TQT_SLOT(unIndent()), ac, "tools_unindent"); a->setWhatsThis(i18n("Use this to unindent a selected block of text.")); a=new TDEAction(i18n("&Clean Indentation"), 0, TQT_TQOBJECT(this), TQT_SLOT(cleanIndent()), ac, "tools_cleanIndent"); |