diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-11-10 14:47:39 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-11-10 14:47:39 +0100 |
commit | c7fa09a7b96e239ff6e7349c9d90e7409d7bbcb3 (patch) | |
tree | 9715e1f86daba6e14ec74625ae10cd85c23b2359 /src/homepage.h | |
parent | Safer Application::mainWindow() call. No 0 return.. (diff) | |
download | rekonq-c7fa09a7b96e239ff6e7349c9d90e7409d7bbcb3.tar.xz |
fixing new mainWindow() behaviour, porting functions calling it
Diffstat (limited to 'src/homepage.h')
-rw-r--r-- | src/homepage.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/homepage.h b/src/homepage.h index 7963119c..abc28de0 100644 --- a/src/homepage.h +++ b/src/homepage.h @@ -39,18 +39,18 @@ class KBookmark; -class HomePage : public QObject +class HomePage { -Q_OBJECT public: - HomePage(QObject *parent = 0); + HomePage(); ~HomePage(); QString rekonqHomePage(const KUrl &url = KUrl("rekonq:home")); - QString homePageMenu(KUrl currentUrl); - + private: + QString homePageMenu(KUrl currentUrl); + QString fillFavorites(); QString lastVisitedSites(); QString fillHistory(); |