icon renaming:

- eraser -> draw-eraser

svn path=/trunk/KDE/kdegraphics/okular/; revision=746312
This commit is contained in:
Pino Toscano 2007-12-08 17:26:24 +00:00
parent 995972052d
commit 9b4e3bd80a

View file

@ -448,7 +448,7 @@ void PresentationWidget::paintEvent( QPaintEvent * pe )
QAction * drawingAct = m_topBar->addAction( KIcon( "pencil" ), i18n( "Toggle Drawing Mode" ) );
drawingAct->setCheckable( true );
connect( drawingAct, SIGNAL( toggled( bool ) ), this, SLOT( togglePencilMode( bool ) ) );
QAction * eraseDrawingAct = m_topBar->addAction( KIcon( "eraser" ), i18n( "Erase Drawings" ) );
QAction * eraseDrawingAct = m_topBar->addAction( KIcon( "draw-eraser" ), i18n( "Erase Drawings" ) );
connect( eraseDrawingAct, SIGNAL( triggered() ), this, SLOT( clearDrawings() ) );
QWidget *spacer = new QWidget(m_topBar);
spacer->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::MinimumExpanding );