diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-04-20 23:31:41 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-04-20 23:31:41 +0200 |
commit | 19eb738f838bf214c9178a4f02464056137b0fa5 (patch) | |
tree | d73539d97dfad3cdb1a3e3c8b0567630ff2cb943 /src/history/historymodels.h | |
parent | rekonq 0.9.56 (diff) | |
download | rekonq-19eb738f838bf214c9178a4f02464056137b0fa5.tar.xz |
Clean up headers && fix compilation with (the upcoming) qt 4.8.2
Diffstat (limited to 'src/history/historymodels.h')
-rw-r--r-- | src/history/historymodels.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/history/historymodels.h b/src/history/historymodels.h index 4f4f30b5..d8f20818 100644 --- a/src/history/historymodels.h +++ b/src/history/historymodels.h @@ -33,17 +33,16 @@ // Rekonq Includes #include "rekonq_defines.h" -// Local Includes -#include "historymanager.h" - // KDE Includes #include <KUrl> // Qt Includes #include <QHash> -#include <QObject> -#include <QSortFilterProxyModel> -#include <QWebHistoryInterface> +#include <QAbstractTableModel> +#include <QAbstractProxyModel> + +// Forward Declarations +class HistoryManager; class REKONQ_TESTS_EXPORT HistoryModel : public QAbstractTableModel @@ -174,7 +173,6 @@ private Q_SLOTS: private: int sourceDateRow(int row) const; mutable QList<int> m_sourceRowCache; - }; |