diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-09-29 10:56:31 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-29 10:56:31 +0200 |
commit | 9bba849081af6cfe93bb8b592843608860e0de6e (patch) | |
tree | 09d737e765aa7d07e4f54253884e81c77fd23ac6 /src/homepage.h | |
parent | Load on click (links on previews) (diff) | |
download | rekonq-9bba849081af6cfe93bb8b592843608860e0de6e.tar.xz |
Implementing a new about: protocol, 1st bunch
Diffstat (limited to 'src/homepage.h')
-rw-r--r-- | src/homepage.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/homepage.h b/src/homepage.h index 90a211a9..3996c095 100644 --- a/src/homepage.h +++ b/src/homepage.h @@ -40,7 +40,7 @@ class HomePage : public QObject Q_OBJECT public: - HomePage(QObject *parent); + HomePage(QObject *parent = 0, const QString &authority = QString("home")); ~HomePage(); QString rekonqHomePage(); @@ -52,6 +52,8 @@ private: QString fillRecentHistory(); QString m_homePagePath; + + QString m_authority; }; #endif // REKONQ_HOME_PAGE |