diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-30 16:56:40 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-30 16:56:40 +0100 |
commit | c0ff12b2fbfcba0f43c9cf501ff94bccaf9c7f89 (patch) | |
tree | 0627ff26b4899e5c0757bfea8fbd1248f63ef691 /src/tabwidget.cpp | |
parent | Ignoring .ctagsdb (diff) | |
parent | Fixed FindBar crash && refactored to look like kate searchbar (diff) | |
download | rekonq-c0ff12b2fbfcba0f43c9cf501ff94bccaf9c7f89.tar.xz |
Merge branch 'xmlgui'
Diffstat (limited to 'src/tabwidget.cpp')
-rw-r--r-- | src/tabwidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabwidget.cpp b/src/tabwidget.cpp index 06a14ff3..3a26266b 100644 --- a/src/tabwidget.cpp +++ b/src/tabwidget.cpp @@ -23,7 +23,7 @@ #include "tabwidget.h" #include "browserapplication.h" -#include "browsermainwindow.h" +#include "mainwindow.h" #include "history.h" #include "urlbar.h" #include "webview.h" @@ -229,7 +229,7 @@ TabWidget::TabWidget(QWidget *parent) setTabBar(m_tabBar); // Actions - m_newTabAction = new KAction(KIcon("tab-new"), i18n("New &Tab"), this); + m_newTabAction = new KAction( KIcon("tab-new"), i18n("New &Tab"), this); m_newTabAction->setShortcut( KShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_N, Qt::CTRL + Qt::Key_T) ); m_newTabAction->setIconVisibleInMenu(false); connect(m_newTabAction, SIGNAL(triggered()), this, SLOT(newTab())); |