diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-07-04 16:15:50 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-07-04 16:15:50 +0200 |
commit | 3b351d7a17dbfa75dfe8521b9611a98efb34fd6e (patch) | |
tree | 28f8e5b890ac21155263c2e23183e87b40420f02 /src/mainview.h | |
parent | fix tab preview when tab has never been focused. (old bug, fixed, reintroduce... (diff) | |
download | rekonq-3b351d7a17dbfa75dfe8521b9611a98efb34fd6e.tar.xz |
Clean MainView API and fix "Pano's bug" about opening new tabs near current ons
Diffstat (limited to 'src/mainview.h')
-rw-r--r-- | src/mainview.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mainview.h b/src/mainview.h index f0a1982f..2ece6fe4 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -96,10 +96,9 @@ public: * with a webview inside * @param focused decide if you wannna give focus * (or not) to this new tab (default true) - * @param nearParent decide if you wanna create new tab near current or not * @return the webview embedded in the new tab */ - WebTab *newWebTab(bool focused = true, bool nearParent = false); + WebTab *newWebTab(bool focused = true); inline QList<HistoryItem> recentlyClosedTabs() { return m_recentlyClosedTabs; } |