From bf9a43f64adff80ddd81d7124d884316b946024c Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 12:51:30 -0500 Subject: Bring undo, redo, find, and revert icons into XDG compliance --- lib/widgets/propeditor/propertyeditor.cpp | 2 +- parts/filelist/filelist_item.cpp | 2 +- src/simplemainwindow.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/widgets/propeditor/propertyeditor.cpp b/lib/widgets/propeditor/propertyeditor.cpp index e9bd4786..780b2821 100644 --- a/lib/widgets/propeditor/propertyeditor.cpp +++ b/lib/widgets/propeditor/propertyeditor.cpp @@ -192,7 +192,7 @@ PropertyEditor::PropertyEditor(TQWidget *parent, const char *name) m_currentEditArea->hide(); m_undoButton = new TQPushButton(m_currentEditArea); #ifndef PURE_QT - m_undoButton->setPixmap(SmallIcon("undo")); + m_undoButton->setPixmap(SmallIcon("edit-undo")); #else m_undoButton->setPixmap( TQPixmap("undo.xpm") ); #endif diff --git a/parts/filelist/filelist_item.cpp b/parts/filelist/filelist_item.cpp index 68eda402..b2df14e9 100644 --- a/parts/filelist/filelist_item.cpp +++ b/parts/filelist/filelist_item.cpp @@ -54,7 +54,7 @@ void FileListItem::setState( DocumentState state ) setPixmap( 0, SmallIcon("filesave") ); break; case Dirty: - setPixmap( 0, SmallIcon("revert") ); + setPixmap( 0, SmallIcon("document-revert") ); break; case DirtyAndModified: setPixmap( 0, SmallIcon("process-stop") ); diff --git a/src/simplemainwindow.cpp b/src/simplemainwindow.cpp index b252bf0b..047d0726 100644 --- a/src/simplemainwindow.cpp +++ b/src/simplemainwindow.cpp @@ -575,7 +575,7 @@ void SimpleMainWindow::documentChangedState(const KURL &url, DocumentState state widget->setIcon(SmallIcon("filesave", isize)); break; case Dirty: - widget->setIcon(SmallIcon("revert", isize)); + widget->setIcon(SmallIcon("document-revert", isize)); break; case DirtyAndModified: widget->setIcon(SmallIcon("process-stop", isize)); -- cgit v1.2.3