diff --git a/part.cpp b/part.cpp index 08998bdb2..3e75e831a 100644 --- a/part.cpp +++ b/part.cpp @@ -195,7 +195,7 @@ m_cliPresentation(false), m_generatorGuiClient(0) // [left toolbox: Reviews] | [] Reviews * reviewsWidget = new Reviews( 0, m_document ); - m_sidebar->addItem( reviewsWidget, KIcon("pencil"), i18n("Reviews") ); + m_sidebar->addItem( reviewsWidget, KIcon("draw-freehand"), i18n("Reviews") ); m_sidebar->setItemEnabled( 2, false ); // [left toolbox: Bookmarks] | [] diff --git a/ui/pageview.cpp b/ui/pageview.cpp index 4922443f7..adf1d4c23 100644 --- a/ui/pageview.cpp +++ b/ui/pageview.cpp @@ -471,7 +471,7 @@ void PageView::setupActions( KActionCollection * ac ) d->aMouseTextSelect->setShortcut( Qt::CTRL + Qt::Key_4 ); d->aMouseTextSelect->setActionGroup( actGroup ); - d->aToggleAnnotator = new KToggleAction(KIcon( "pencil" ), i18n("&Review"), this); + d->aToggleAnnotator = new KToggleAction(KIcon( "draw-freehand" ), i18n("&Review"), this); ac->addAction("mouse_toggle_annotate", d->aToggleAnnotator ); d->aToggleAnnotator->setCheckable( true ); connect( d->aToggleAnnotator, SIGNAL( toggled( bool ) ), SLOT( slotToggleAnnotator( bool ) ) ); diff --git a/ui/pageviewutils.cpp b/ui/pageviewutils.cpp index 521a6d3f7..70a6b0546 100644 --- a/ui/pageviewutils.cpp +++ b/ui/pageviewutils.cpp @@ -176,7 +176,7 @@ void PageViewMessage::display( const QString & message, Icon icon, int durationM switch ( icon ) { case Annotation: - symbol = SmallIcon( "pencil" ); + symbol = SmallIcon( "draw-freehand" ); break; case Find: symbol = SmallIcon( "zoom-original" ); diff --git a/ui/presentationwidget.cpp b/ui/presentationwidget.cpp index 42e589793..ecc920915 100644 --- a/ui/presentationwidget.cpp +++ b/ui/presentationwidget.cpp @@ -445,7 +445,7 @@ void PresentationWidget::paintEvent( QPaintEvent * pe ) connect( m_pagesEdit, SIGNAL( returnPressed() ), this, SLOT( slotPageChanged() ) ); m_topBar->addAction( KIcon( layoutDirection() == Qt::RightToLeft ? "go-next-rtl" : "go-next" ), i18n("Next Page"), this, SLOT( slotNextPage() ) ); m_topBar->addSeparator(); - QAction * drawingAct = m_topBar->addAction( KIcon( "pencil" ), i18n( "Toggle Drawing Mode" ) ); + QAction * drawingAct = m_topBar->addAction( KIcon( "draw-freehand" ), i18n( "Toggle Drawing Mode" ) ); drawingAct->setCheckable( true ); connect( drawingAct, SIGNAL( toggled( bool ) ), this, SLOT( togglePencilMode( bool ) ) ); QAction * eraseDrawingAct = m_topBar->addAction( KIcon( "draw-eraser" ), i18n( "Erase Drawings" ) );