diff options
Diffstat (limited to 'src/webwindow/webwindow.cpp')
-rw-r--r-- | src/webwindow/webwindow.cpp | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/src/webwindow/webwindow.cpp b/src/webwindow/webwindow.cpp index 616ccc69..74d1eda7 100644 --- a/src/webwindow/webwindow.cpp +++ b/src/webwindow/webwindow.cpp @@ -70,9 +70,9 @@ #include <QVBoxLayout> -WebWindow::WebWindow(QWidget *parent, WebPage *pg) +WebWindow::WebWindow(QWidget *parent, bool isPrivateBrowsing, WebPage *pg) : QWidget(parent) - , _tab(new WebTab(this)) + , _tab(new WebTab(this, isPrivateBrowsing)) , _bar(new UrlBar(_tab)) , _mainToolBar(0) , m_findBar(new FindBar(this)) @@ -81,7 +81,6 @@ WebWindow::WebWindow(QWidget *parent, WebPage *pg) , m_popup(new QLabel(this)) , m_hidePopupTimer(new QTimer(this)) , _ac(new KActionCollection(this)) - , _isPrivateBrowsing(false) { if (pg) { @@ -897,19 +896,6 @@ void WebWindow::toggleBookmarksToolbar(bool b) } -bool WebWindow::isPrivateBrowsing() -{ - return _isPrivateBrowsing; -} - - -void WebWindow::setPrivateBrowsing(bool on) -{ - _tab->page()->settings()->setAttribute(QWebSettings::PrivateBrowsingEnabled, on); - _isPrivateBrowsing = on; -} - - void WebWindow::showCrashMessageBar() { _tab->showCrashMessageBar(); |