summaryrefslogtreecommitdiff
path: root/src/mainview.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-05-02 02:32:34 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-05-02 02:32:34 +0200
commit0d324ed688eda0e1f172353d33ca33731b8f6764 (patch)
tree228c42d016ef2a00fb17f40c0876b6d8850997aa /src/mainview.h
parentManaging user tab open settings. Step 2 (diff)
downloadrekonq-0d324ed688eda0e1f172353d33ca33731b8f6764.tar.xz
Open Back/Forward tabs fixed
Diffstat (limited to 'src/mainview.h')
-rw-r--r--src/mainview.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainview.h b/src/mainview.h
index 75242fef..372902dd 100644
--- a/src/mainview.h
+++ b/src/mainview.h
@@ -75,7 +75,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; }
+ void setMakeBackTab(bool b) { m_makeBackTab = b; }
/**
* show and hide TabBar if user doesn't choose
@@ -192,7 +192,7 @@ private:
QString m_loadingGitPath;
- bool makeTabCurrent;
+ bool m_makeBackTab;
};
#endif