diff options
| author | Andrea Diamantini <adjam7@gmail.com> | 2010-02-20 15:00:44 +0100 | 
|---|---|---|
| committer | Andrea Diamantini <adjam7@gmail.com> | 2010-02-20 15:00:44 +0100 | 
| commit | 22d363fd9073cfa75204cb8d05959afcbd849b11 (patch) | |
| tree | a17e9d5eed1983e5f1331b63f6784391791d11b9 | |
| parent | window title fixes (diff) | |
| parent | The newTab button must be initialized after the tabBar. (diff) | |
| download | rekonq-22d363fd9073cfa75204cb8d05959afcbd849b11.tar.xz | |
Merge commit 'refs/merge-requests/93' of git://gitorious.org/rekonq/mainline into mr93
| -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 98d8b0a6..cfce0fb0 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -65,12 +65,12 @@  MainView::MainView(MainWindow *parent)      : KTabWidget(parent)      , m_urlBar(new UrlBar(this)) -    , m_addTabButton(new QToolButton(this))      , m_currentTabIndex(0)      , m_parentWindow(parent)  {      // setting tabbar      TabBar *tabBar = new TabBar(this); +    m_addTabButton = new QToolButton(this);      setTabBar(tabBar);      // set mouse tracking for tab previews | 
