summaryrefslogtreecommitdiff
path: root/src/mainview.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-05-01 02:53:23 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-05-01 02:53:23 +0200
commitca88e015f36d8f729e612e9a70c1b0ed65f0731d (patch)
treebcc5bcb4c376adaca379927e4b6bfcf7c939ee73 /src/mainview.h
parentsetting focus to urlbar on empty tab opened. Some kwarning removal (diff)
downloadrekonq-ca88e015f36d8f729e612e9a70c1b0ed65f0731d.tar.xz
Open tabs in brackground. Step 1
Diffstat (limited to 'src/mainview.h')
-rw-r--r--src/mainview.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mainview.h b/src/mainview.h
index ca233872..faa43be9 100644
--- a/src/mainview.h
+++ b/src/mainview.h
@@ -74,6 +74,7 @@ public:
WebView *currentWebView() const { return webView(currentIndex()); }
int webViewIndex(WebView *webView) const { return indexOf(webView); }
KAction *recentlyClosedTabsAction() const { return m_recentlyClosedTabsAction; }
+ void setMakeTabCurrent( bool b) { makeTabCurrent = b; }
/**
* show and hide TabBar if user doesn't choose
@@ -189,6 +190,8 @@ private:
TabBar *m_tabBar;
QString m_loadingGitPath;
+
+ bool makeTabCurrent;
};
#endif