use the right icons for the rotation

svn path=/trunk/playground/graphics/okular/; revision=646383
remotes/origin/KDE/4.0
Pino Toscano 19 years ago
parent 213b25284f
commit a02c0785fe
  1. 4
      ui/pageview.cpp

@ -329,10 +329,10 @@ void PageView::setupActions( KActionCollection * ac )
d->actionCollection = ac;
// orientation menu actions
d->aRotateClockwise = new KAction( KIcon( "object-rotate-left" ), i18n( "Rotate Right" ), this );
d->aRotateClockwise = new KAction( KIcon( "object-rotate-right" ), i18n( "Rotate Right" ), this );
ac->addAction( "view_orientation_rotate_cw", d->aRotateClockwise );
connect( d->aRotateClockwise, SIGNAL( triggered() ), this, SLOT( slotRotateClockwise() ) );
d->aRotateCounterClockwise = new KAction( KIcon( "object-rotate-right" ), i18n( "Rotate Left" ), this );
d->aRotateCounterClockwise = new KAction( KIcon( "object-rotate-left" ), i18n( "Rotate Left" ), this );
ac->addAction( "view_orientation_rotate_ccw", d->aRotateCounterClockwise );
connect( d->aRotateCounterClockwise, SIGNAL( triggered() ), this, SLOT( slotRotateCounterClockwise() ) );
d->aRotateOriginal = new KAction( i18n( "Original Orientation" ), this );

Loading…
Cancel
Save