diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:56 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:56 -0500 |
commit | ab197a37e3e362ae3980f5bdd9840b0e4703e370 (patch) | |
tree | 8778c43175b2f6e2b593ef0edf3f9e5c8518e678 /kcontrol | |
parent | a19ce6ad349c047b7feb2ad49c5a066d7dd2c745 (diff) | |
download | tdebase-ab197a37e3e362ae3980f5bdd9840b0e4703e370.tar.gz tdebase-ab197a37e3e362ae3980f5bdd9840b0e4703e370.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 'kcontrol')
-rw-r--r-- | kcontrol/background/bgdialog.cpp | 2 | ||||
-rw-r--r-- | kcontrol/konsole/schemaeditor.cpp | 2 | ||||
-rw-r--r-- | kcontrol/konsole/sessioneditor.cpp | 2 | ||||
-rw-r--r-- | kcontrol/kthememanager/kthememanager.cpp | 2 | ||||
-rw-r--r-- | kcontrol/tdefontinst/kcmfontinst/KCmFontInst.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/kcontrol/background/bgdialog.cpp b/kcontrol/background/bgdialog.cpp index b2f825184..e903b7bc2 100644 --- a/kcontrol/background/bgdialog.cpp +++ b/kcontrol/background/bgdialog.cpp @@ -142,7 +142,7 @@ BGDialog::BGDialog(TQWidget* parent, TDEConfig* _config, bool _multidesktop) } // background image settings - TQIconSet iconSet = SmallIconSet(TQString::fromLatin1("fileopen")); + TQIconSet iconSet = SmallIconSet(TQString::fromLatin1("document-open")); TQPixmap pixMap = iconSet.pixmap( TQIconSet::Small, TQIconSet::Normal ); m_urlWallpaperButton->setIconSet( iconSet ); m_urlWallpaperButton->setFixedSize( pixMap.width()+8, pixMap.height()+8 ); diff --git a/kcontrol/konsole/schemaeditor.cpp b/kcontrol/konsole/schemaeditor.cpp index 66b07e59f..dfa4dbefe 100644 --- a/kcontrol/konsole/schemaeditor.cpp +++ b/kcontrol/konsole/schemaeditor.cpp @@ -317,7 +317,7 @@ void SchemaEditor::removeCurrent() int code = KMessageBox::warningContinueCancel(this, i18n("You are trying to remove a system schema. Are you sure?"), i18n("Removing System Schema"), - KGuiItem(i18n("&Delete"), "editdelete")); + KGuiItem(i18n("&Delete"), "edit-delete")); if (code != KMessageBox::Continue) return; } diff --git a/kcontrol/konsole/sessioneditor.cpp b/kcontrol/konsole/sessioneditor.cpp index 86c9dd825..290541d12 100644 --- a/kcontrol/konsole/sessioneditor.cpp +++ b/kcontrol/konsole/sessioneditor.cpp @@ -358,7 +358,7 @@ void SessionEditor::removeCurrent() int code = KMessageBox::warningContinueCancel(this, i18n("You are trying to remove a system session. Are you sure?"), i18n("Removing System Session"), - KGuiItem(i18n("&Delete"),"editdelete")); + KGuiItem(i18n("&Delete"),"edit-delete")); if (code != KMessageBox::Continue) return; } diff --git a/kcontrol/kthememanager/kthememanager.cpp b/kcontrol/kthememanager/kthememanager.cpp index aa04d8e56..ba8bb3a7e 100644 --- a/kcontrol/kthememanager/kthememanager.cpp +++ b/kcontrol/kthememanager/kthememanager.cpp @@ -252,7 +252,7 @@ void kthememanager::slotRemoveTheme() { TQString themeName = cur->text( 0 ); if ( KMessageBox::warningContinueCancel( this, "<qt>" + i18n( "Do you really want to remove the theme <b>%1</b>?" ).arg( themeName ), - i18n( "Remove Theme" ), KGuiItem( i18n( "&Remove" ), "editdelete" ) ) + i18n( "Remove Theme" ), KGuiItem( i18n( "&Remove" ), "edit-delete" ) ) == KMessageBox::Continue ) { KTheme::remove( themeName ); diff --git a/kcontrol/tdefontinst/kcmfontinst/KCmFontInst.cpp b/kcontrol/tdefontinst/kcmfontinst/KCmFontInst.cpp index 7004f0ae5..d61ea4da0 100644 --- a/kcontrol/tdefontinst/kcmfontinst/KCmFontInst.cpp +++ b/kcontrol/tdefontinst/kcmfontinst/KCmFontInst.cpp @@ -236,7 +236,7 @@ CKCmFontInst::CKCmFontInst(TQWidget *parent, const char *, const TQStringList&) act->plug(toolbar); #ifdef HAVE_XFT toolbar->insertLineSeparator(); - act=new TDEAction(i18n("Print..."), "fileprint", 0, TQT_TQOBJECT(this), TQT_SLOT(print()), itsDirOp->actionCollection(), "print"); + act=new TDEAction(i18n("Print..."), "document-print", 0, TQT_TQOBJECT(this), TQT_SLOT(print()), itsDirOp->actionCollection(), "print"); act->plug(toolbar); #endif |