diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-07-29 11:22:24 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-12-10 02:48:04 +0100 |
commit | fe7c06fffa370f8f04a3035f3ae92975ea39b960 (patch) | |
tree | f60ad5a2bd0c72ccac0c195dc5630c15071e35f2 /src/webwindow | |
parent | Class Application Import, first (important) part (diff) | |
download | rekonq-fe7c06fffa370f8f04a3035f3ae92975ea39b960.tar.xz |
Insert back HistoryManager
There are a few notable changes here:
- rekonq_defines.h clean up, removing the enums from there
- let HistoryManager be accessible by a self function
Diffstat (limited to 'src/webwindow')
-rw-r--r-- | src/webwindow/webpage.cpp | 2 | ||||
-rw-r--r-- | src/webwindow/webpage.h | 4 | ||||
-rw-r--r-- | src/webwindow/webwindow.h | 6 |
3 files changed, 9 insertions, 3 deletions
diff --git a/src/webwindow/webpage.cpp b/src/webwindow/webpage.cpp index 2c2d34e3..ab66524b 100644 --- a/src/webwindow/webpage.cpp +++ b/src/webwindow/webpage.cpp @@ -34,8 +34,6 @@ #include "webpage.h" #include "webpage.moc" -#include <KDebug> - WebPage::WebPage(QWidget *parent) : KWebPage(parent) diff --git a/src/webwindow/webpage.h b/src/webwindow/webpage.h index 3631074b..f953d3fc 100644 --- a/src/webwindow/webpage.h +++ b/src/webwindow/webpage.h @@ -32,6 +32,10 @@ #ifndef WEBPAGE_H #define WEBPAGE_H + +// Rekonq Includes +#include "rekonq_defines.h" + // KDE Includes #include <KWebPage> diff --git a/src/webwindow/webwindow.h b/src/webwindow/webwindow.h index fdcb0383..b8533569 100644 --- a/src/webwindow/webwindow.h +++ b/src/webwindow/webwindow.h @@ -22,9 +22,13 @@ #define WEB_WINDOW -#include <QWidget> +// Rekonq Includes +#include "rekonq_defines.h" +// Qt Includes +#include <QWidget> +// Forward Declarations class WebPage; class QWebView; |