From a02c0785fe942e7c019fba918f4450cd19c55cd4 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Sun, 25 Mar 2007 15:15:50 +0000 Subject: [PATCH] use the right icons for the rotation svn path=/trunk/playground/graphics/okular/; revision=646383 --- ui/pageview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 );