diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-08-28 02:23:00 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-08-28 02:23:00 +0200 |
commit | e0f74f47270fd06399186c7ba48d8575f2e2906f (patch) | |
tree | 2ee334f708f9a4291763a9cdf40a4280433a898b /src/mainview.cpp | |
parent | New tab button code improvements. (diff) | |
download | rekonq-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.cpp | 2 |
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))); |