From bea659fa4a4f1a1b7cde014803b6855e3b64db8e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 15:43:47 -0500 Subject: [PATCH] Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance --- src/kcm/configdialog.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/kcm/configdialog.cpp b/src/kcm/configdialog.cpp index d2302e3..3118ce6 100644 --- a/src/kcm/configdialog.cpp +++ b/src/kcm/configdialog.cpp @@ -87,10 +87,10 @@ ConfigDialog::ConfigDialog( TQWidget *parent, const char *name, const TQStringLi load(); TQVBoxLayout* top = new TQVBoxLayout(this); - mDlg->pushButtonNew->setPixmap( SmallIcon( "filenew" ) ); - mDlg->pushButtonDelete->setPixmap( SmallIcon( "editdelete" ) ); - mDlg->pushButtonAddCommand->setPixmap( SmallIcon( "filenew" ) ); - mDlg->pushButtonRemoveCommand->setPixmap( SmallIcon( "editdelete" ) ); + mDlg->pushButtonNew->setPixmap( SmallIcon( "document-new" ) ); + mDlg->pushButtonDelete->setPixmap( SmallIcon( "edit-delete" ) ); + mDlg->pushButtonAddCommand->setPixmap( SmallIcon( "document-new" ) ); + mDlg->pushButtonRemoveCommand->setPixmap( SmallIcon( "edit-delete" ) ); mDlg->pushButtonUp->setPixmap( SmallIcon( "1uparrow" ) ); mDlg->pushButtonDown->setPixmap( SmallIcon( "1downarrow" ) ); mDlg->pushButtonAddToolTip->setPixmap( SmallIcon( "1rightarrow" ) );