diff --git a/ui/pageview.cpp b/ui/pageview.cpp index 705110ebd..1343989da 100644 --- a/ui/pageview.cpp +++ b/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 );