From 8fa041d06ff8387db0db9ea2f7cc823e3b880d75 Mon Sep 17 00:00:00 2001 From: Clarence Dang Date: Fri, 21 Jul 2006 11:26:45 +0000 Subject: [PATCH] make zoom combobox work; editing the text directly is not supported yet svn path=/trunk/playground/graphics/okular/; revision=564799 --- ui/pageview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/pageview.cpp b/ui/pageview.cpp index 178b3eb9a..f927393c5 100644 --- a/ui/pageview.cpp +++ b/ui/pageview.cpp @@ -242,7 +242,7 @@ void PageView::setupActions( KActionCollection * ac ) d->aZoom = new KSelectAction( KIcon( "viewmag" ), i18n( "Zoom" ), ac, "zoom_to" ); d->aZoom->setEditable( true ); d->aZoom->setMaxComboViewCount( 13 ); - connect( d->aZoom, SIGNAL( triggered() ), this, SLOT( slotZoom() ) ); + connect( d->aZoom, SIGNAL( triggered(QAction *) ), this, SLOT( slotZoom() ) ); updateZoomText(); KStdAction::zoomIn( this, SLOT( slotZoomIn() ), ac, "zoom_in" );