diff options
| -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)); | 
