summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorYoann Laissus <yoann.laissus@gmail.com>2010-08-10 11:47:47 +0200
committerYoann Laissus <yoann.laissus@gmail.com>2010-08-10 11:47:47 +0200
commit9373712886409ccdce0211f5267b2003a0a770a2 (patch)
treee764b60e9880a323ee78bda02151861f1fbd6706 /src/mainwindow.cpp
parent- Checkable action for the zoom and find bars (diff)
downloadrekonq-9373712886409ccdce0211f5267b2003a0a770a2.tar.xz
Fix comments
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index e547e8e3..5d0d1d0c 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -255,7 +255,8 @@ void MainWindow::postLaunch()
// Zoom Bar signal
connect(m_view, SIGNAL(currentChanged(int)), m_zoomBar, SLOT(updateSlider(int)));
- connect(this->currentTab()->view(), SIGNAL(zoomChanged(int)), m_zoomBar, SLOT(setValue(int))); // Ctrl + wheel handling
+ // Ctrl + wheel handling
+ connect(this->currentTab()->view(), SIGNAL(zoomChanged(int)), m_zoomBar, SLOT(setValue(int)));
// setting up toolbars to NOT have context menu enabled
setContextMenuPolicy(Qt::DefaultContextMenu);