diff options
Diffstat (limited to 'src/webtab/webtab.h')
-rw-r--r-- | src/webtab/webtab.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/webtab/webtab.h b/src/webtab/webtab.h index d016e6b2..a168e55d 100644 --- a/src/webtab/webtab.h +++ b/src/webtab/webtab.h @@ -58,7 +58,7 @@ class REKONQ_TESTS_EXPORT WebTab : public QWidget Q_OBJECT public: - explicit WebTab(QWidget *parent = 0); + explicit WebTab(QWidget *parent = 0, bool isPrivateBrowsing = false); ~WebTab(); WebView *view(); @@ -127,6 +127,8 @@ private: int m_zoomFactor; + bool m_isPrivateBrowsing; + QSplitter *m_splitter; }; |