diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:51:30 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:51:30 -0500 |
commit | bf9a43f64adff80ddd81d7124d884316b946024c (patch) | |
tree | e5464bd47ad8119ea83652f89d071eede240007b | |
parent | c83179688cf0aa148610cfc4e32ae6d83d8904b8 (diff) | |
download | tdevelop-bf9a43f64adff80ddd81d7124d884316b946024c.tar.gz tdevelop-bf9a43f64adff80ddd81d7124d884316b946024c.zip |
Bring undo, redo, find, and revert icons into XDG compliance
-rw-r--r-- | lib/widgets/propeditor/propertyeditor.cpp | 2 | ||||
-rw-r--r-- | parts/filelist/filelist_item.cpp | 2 | ||||
-rw-r--r-- | 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)); |