summaryrefslogtreecommitdiff
path: root/desktop/global_history.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-05-18 18:51:18 +0100
committerVincent Sanders <vince@kyllikki.org>2014-05-18 18:51:18 +0100
commit706c92bf8f6d2737c1e38f707fd792bceb75af6a (patch)
tree0bd4e20eb58389c7b0526ab50b0b79f934e4971a /desktop/global_history.c
parent6677eef89b073850233c0595e02e617acb29de02 (diff)
downloadnetsurf-706c92bf8f6d2737c1e38f707fd792bceb75af6a.tar.gz
netsurf-706c92bf8f6d2737c1e38f707fd792bceb75af6a.tar.bz2
remove uneeded includes
Diffstat (limited to 'desktop/global_history.c')
-rw-r--r--desktop/global_history.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/desktop/global_history.c b/desktop/global_history.c
index c29b05145..09154f2d1 100644
--- a/desktop/global_history.c
+++ b/desktop/global_history.c
@@ -19,14 +19,16 @@
#include <stdlib.h>
-#include "content/urldb.h"
-#include "desktop/global_history.h"
-#include "desktop/treeview.h"
#include "utils/messages.h"
#include "utils/utils.h"
#include "utils/utf8.h"
#include "utils/libdom.h"
#include "utils/log.h"
+#include "content/urldb.h"
+
+#include "desktop/global_history.h"
+#include "desktop/treeview.h"
+#include "desktop/browser.h"
#define N_DAYS 28
#define N_SEC_PER_DAY (60 * 60 * 24)