diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:42 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:42 -0500 |
commit | f4d1de01da14332884e2bb2c605465a0f3f63274 (patch) | |
tree | 76a966e95ece79ebd1451c10084fd044fa504149 /src/part/radialMap/widgetEvents.cpp | |
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/radialMap/widgetEvents.cpp')
-rw-r--r-- | src/part/radialMap/widgetEvents.cpp | 8 |
1 files changed, 4 insertions, 4 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 ); |