diff options
Diffstat (limited to 'kpresenter/KPrSideBar.cpp')
-rw-r--r-- | kpresenter/KPrSideBar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kpresenter/KPrSideBar.cpp b/kpresenter/KPrSideBar.cpp index 9917f97d5..d3b6d7929 100644 --- a/kpresenter/KPrSideBar.cpp +++ b/kpresenter/KPrSideBar.cpp @@ -265,7 +265,7 @@ void KPrThumbBar::setCurrentPage( int pg ) if ( it->text().toInt() - 1 == pg ) { blockSignals( true ); setCurrentItem( it ); - setSelected( it, FALSE ); // to avoid the blue "selected"-mark + setSelected( it, false ); // to avoid the blue "selected"-mark ensureItemVisible(it); refreshItems(); blockSignals( false ); @@ -283,7 +283,7 @@ TQRect KPrThumbBar::tip(const TQPoint &pos, TQString &title) int pagenr = item->index(); title = m_doc->pageList().at(pagenr)->pageTitle(); - TQRect r = item->pixmapRect(FALSE); + TQRect r = item->pixmapRect(false); r = TQRect(contentsToViewport(TQPoint(r.x(), r.y())), TQSize(r.width(), r.height())); return r; } |