diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:42 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:42 -0500 |
commit | f4d1de01da14332884e2bb2c605465a0f3f63274 (patch) | |
tree | 76a966e95ece79ebd1451c10084fd044fa504149 /src/part | |
parent | 4d05a18419267aa60ab16baa09a0e6450063fb22 (diff) | |
download | filelight-f4d1de01da14332884e2bb2c605465a0f3f63274.tar.gz filelight-f4d1de01da14332884e2bb2c605465a0f3f63274.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 'src/part')
-rw-r--r-- | src/part/radialMap/widgetEvents.cpp | 8 | ||||
-rw-r--r-- | src/part/settingsDialog.cpp | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/part/radialMap/widgetEvents.cpp b/src/part/radialMap/widgetEvents.cpp index 69ba3e5..fd0e1a4 100644 --- a/src/part/radialMap/widgetEvents.cpp +++ b/src/part/radialMap/widgetEvents.cpp @@ -173,13 +173,13 @@ RadialMap::Widget::mousePressEvent( TQMouseEvent *e ) } } else - popup.insertItem( SmallIconSet( "fileopen" ), i18n( "&Open" ), Open ); + popup.insertItem( SmallIconSet( "document-open" ), i18n( "&Open" ), Open ); popup.insertSeparator(); - popup.insertItem( SmallIconSet( "editcopy" ), i18n( "&Copy to clipboard" ), Copy ); + popup.insertItem( SmallIconSet( "edit-copy" ), i18n( "&Copy to clipboard" ), Copy ); popup.insertSeparator(); - popup.insertItem( SmallIconSet( "editdelete" ), i18n( "&Delete" ), Delete ); + popup.insertItem( SmallIconSet( "edit-delete" ), i18n( "&Delete" ), Delete ); switch (popup.exec( e->globalPos(), 1 )) { case Konqueror: @@ -208,7 +208,7 @@ RadialMap::Widget::mousePressEvent( TQMouseEvent *e ) : i18n( "<qt><i>'%1'</i> will be <b>permanently</b> deleted." ); const int userIntention = KMessageBox::warningContinueCancel( this, message.arg( url.prettyURL() ), - TQString(), KGuiItem( i18n("&Delete"), "editdelete" ) ); + TQString(), KGuiItem( i18n("&Delete"), "edit-delete" ) ); if (userIntention == KMessageBox::Continue) { TDEIO::Job *job = TDEIO::del( url ); diff --git a/src/part/settingsDialog.cpp b/src/part/settingsDialog.cpp index e10707c..fe408a7 100644 --- a/src/part/settingsDialog.cpp +++ b/src/part/settingsDialog.cpp @@ -51,9 +51,9 @@ SettingsDialog::SettingsDialog( TQWidget *parent, const char *name ) connect( minFontPitch, TQT_SIGNAL ( valueChanged( int ) ), TQT_SLOT( changeMinFontPitch( int ) ) ); - m_addButton->setIconSet( SmallIcon( "fileopen" ) ); + m_addButton->setIconSet( SmallIcon( "document-open" ) ); m_resetButton->setIconSet( SmallIcon( "edit-undo" ) ); - m_closeButton->setIconSet( SmallIcon( "fileclose" ) ); + m_closeButton->setIconSet( SmallIcon( "window-close" ) ); } |