summaryrefslogtreecommitdiffstats
path: root/src/part/radialMap/widgetEvents.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/part/radialMap/widgetEvents.cpp')
-rw-r--r--src/part/radialMap/widgetEvents.cpp8
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 );