diff --git a/ui/pageview.cpp b/ui/pageview.cpp index 6745871af..3909417d5 100644 --- a/ui/pageview.cpp +++ b/ui/pageview.cpp @@ -1800,10 +1800,10 @@ void PageView::contentsMouseReleaseEvent( QMouseEvent * e ) textToClipboard->setText( i18n("Copy forbidden by DRM") ); } if ( Okular::Settings::useKTTSD() ) - speakText = menu.addAction( KIcon("kttsd"), i18n( "Speak Text" ) ); + speakText = menu.addAction( KIcon("text-speak"), i18n( "Speak Text" ) ); } menu.addTitle( i18n( "Image (%1 by %2 pixels)", selectionRect.width(), selectionRect.height() ) ); - imageToClipboard = menu.addAction( KIcon("image"), i18n( "Copy to Clipboard" ) ); + imageToClipboard = menu.addAction( KIcon("image-x-generic"), i18n( "Copy to Clipboard" ) ); imageToFile = menu.addAction( KIcon("document-save"), i18n( "Save to File..." ) ); QAction *choice = menu.exec( e->globalPos() ); // check if the user really selected an action