summaryrefslogtreecommitdiff
path: root/src/mainview.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-08-28 02:23:00 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-08-28 02:23:00 +0200
commite0f74f47270fd06399186c7ba48d8575f2e2906f (patch)
tree2ee334f708f9a4291763a9cdf40a4280433a898b /src/mainview.cpp
parentNew tab button code improvements. (diff)
downloadrekonq-e0f74f47270fd06399186c7ba48d8575f2e2906f.tar.xz
Typo SIGNAL --> SLOT
perhaps the bug for Mouse Middle close feature..
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r--src/mainview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp
index 3fc8856b..ec26c359 100644
--- a/src/mainview.cpp
+++ b/src/mainview.cpp
@@ -76,7 +76,7 @@ MainView::MainView(QWidget *parent)
// connecting tabbar signals
connect(m_tabBar, SIGNAL(closeTab(int)), this, SLOT(slotCloseTab(int)));
- connect(m_tabBar, SIGNAL(mouseMiddleClick(int)), this, SIGNAL(slotCloseTab(int)));
+ connect(m_tabBar, SIGNAL(mouseMiddleClick(int)), this, SLOT(slotCloseTab(int)));
connect(m_tabBar, SIGNAL(cloneTab(int)), this, SLOT(slotCloneTab(int)));
connect(m_tabBar, SIGNAL(closeOtherTabs(int)), this, SLOT(slotCloseOtherTabs(int)));