diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:57 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:57 -0500 |
commit | bab4f22f92cb4960c7a7c17845813de2082ffdc9 (patch) | |
tree | 640b74651a92cff1c0ad2d5f0d3fd497b0ebb318 /kate | |
parent | 43022555c031434da009032eceb8e6061e969d5f (diff) | |
download | tdelibs-bab4f22f92cb4960c7a7c17845813de2082ffdc9.tar.gz tdelibs-bab4f22f92cb4960c7a7c17845813de2082ffdc9.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'kate')
-rw-r--r-- | kate/part/katedocument.cpp | 2 | ||||
-rw-r--r-- | kate/part/kateview.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kate/part/katedocument.cpp b/kate/part/katedocument.cpp index 5e2cef175..7488fec05 100644 --- a/kate/part/katedocument.cpp +++ b/kate/part/katedocument.cpp @@ -525,7 +525,7 @@ TQPixmap KateDocument::configPagePixmap (uint number, int size) const return BarIcon("rightjust", size); case 5: - return BarIcon("filesave", size); + return BarIcon("document-save", size); case 6: return BarIcon("source", size); diff --git a/kate/part/kateview.cpp b/kate/part/kateview.cpp index 821cb0faf..603d7dc3c 100644 --- a/kate/part/kateview.cpp +++ b/kate/part/kateview.cpp @@ -221,7 +221,7 @@ void KateView::setupActions() m_copy = a=KStdAction::copy(TQT_TQOBJECT(this), TQT_SLOT(copy()), ac); a->setWhatsThis(i18n( "Use this command to copy the currently selected text to the system clipboard.")); - m_copyHTML = a = new TDEAction(i18n("Copy as &HTML"), "editcopy", 0, TQT_TQOBJECT(this), TQT_SLOT(copyHTML()), ac, "edit_copy_html"); + m_copyHTML = a = new TDEAction(i18n("Copy as &HTML"), "edit-copy", 0, TQT_TQOBJECT(this), TQT_SLOT(copyHTML()), ac, "edit_copy_html"); a->setWhatsThis(i18n( "Use this command to copy the currently selected text as HTML to the system clipboard.")); if (!m_doc->readOnly()) @@ -889,7 +889,7 @@ bool KateView::checkOverwrite( KURL u ) ( this, i18n( "A file named \"%1\" already exists. Are you sure you want to overwrite it?" ).arg( info.fileName() ), i18n( "Overwrite File?" ), - KGuiItem( i18n( "&Overwrite" ), "filesave", i18n( "Overwrite the file" ) ) + KGuiItem( i18n( "&Overwrite" ), "document-save", i18n( "Overwrite the file" ) ) ); } |