summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-08-04 23:50:06 +0100
committerVincent Sanders <vince@kyllikki.org>2016-08-04 23:50:06 +0100
commitf17e88e7098a5b1c817184e6bf59dcc5d9073ae9 (patch)
tree21bbc4e652450e724eb7025f2809e3a36e62c9de /frontends
parent189b7b45fb9805d1beae9506cac2c001bd680470 (diff)
downloadnetsurf-f17e88e7098a5b1c817184e6bf59dcc5d9073ae9.tar.gz
netsurf-f17e88e7098a5b1c817184e6bf59dcc5d9073ae9.tar.bz2
rename gtk global history implementation
Diffstat (limited to 'frontends')
-rw-r--r--frontends/gtk/Makefile2
-rw-r--r--frontends/gtk/cookies.c1
-rw-r--r--frontends/gtk/global_history.c (renamed from frontends/gtk/history.c)3
-rw-r--r--frontends/gtk/global_history.h (renamed from frontends/gtk/history.h)0
-rw-r--r--frontends/gtk/gui.c2
-rw-r--r--frontends/gtk/scaffolding.c2
6 files changed, 4 insertions, 6 deletions
diff --git a/frontends/gtk/Makefile b/frontends/gtk/Makefile
index f8f7d8c69..71dec1e69 100644
--- a/frontends/gtk/Makefile
+++ b/frontends/gtk/Makefile
@@ -160,7 +160,7 @@ endif
# S_FRONTEND are sources purely for the GTK frontend
S_FRONTEND := gui.c schedule.c layout_pango.c bitmap.c plotters.c \
treeview.c scaffolding.c gdk.c completion.c login.c throbber.c \
- selection.c history.c window.c fetch.c download.c menu.c \
+ selection.c global_history.c window.c fetch.c download.c menu.c \
print.c search.c tabs.c toolbar.c gettext.c \
compat.c cookies.c hotlist.c viewdata.c viewsource.c \
preferences.c about.c ssl_cert.c resources.c corewindow.c
diff --git a/frontends/gtk/cookies.c b/frontends/gtk/cookies.c
index d8f8b5dbd..3c5d93a87 100644
--- a/frontends/gtk/cookies.c
+++ b/frontends/gtk/cookies.c
@@ -33,7 +33,6 @@
#include "gtk/cookies.h"
#include "gtk/plotters.h"
-#include "gtk/scaffolding.h"
#include "gtk/resources.h"
#include "gtk/corewindow.h"
diff --git a/frontends/gtk/history.c b/frontends/gtk/global_history.c
index 22cf1e889..df6fe06e7 100644
--- a/frontends/gtk/history.c
+++ b/frontends/gtk/global_history.c
@@ -33,11 +33,10 @@
#include "desktop/treeview.h"
#include "gtk/compat.h"
-#include "gtk/history.h"
#include "gtk/plotters.h"
-#include "gtk/scaffolding.h"
#include "gtk/resources.h"
#include "gtk/corewindow.h"
+#include "gtk/global_history.h"
struct nsgtk_global_history_window {
struct nsgtk_corewindow core;
diff --git a/frontends/gtk/history.h b/frontends/gtk/global_history.h
index 996e0fdd8..996e0fdd8 100644
--- a/frontends/gtk/history.h
+++ b/frontends/gtk/global_history.h
diff --git a/frontends/gtk/gui.c b/frontends/gtk/gui.c
index 1f22b6076..8d0bb75d7 100644
--- a/frontends/gtk/gui.c
+++ b/frontends/gtk/gui.c
@@ -58,7 +58,7 @@
#include "gtk/download.h"
#include "gtk/fetch.h"
#include "gtk/gui.h"
-#include "gtk/history.h"
+#include "gtk/global_history.h"
#include "gtk/hotlist.h"
#include "gtk/throbber.h"
#include "gtk/treeview.h"
diff --git a/frontends/gtk/scaffolding.c b/frontends/gtk/scaffolding.c
index 3c47b4df1..cdf238bb5 100644
--- a/frontends/gtk/scaffolding.c
+++ b/frontends/gtk/scaffolding.c
@@ -60,7 +60,7 @@
#include "gtk/viewsource.h"
#include "gtk/bitmap.h"
#include "gtk/gui.h"
-#include "gtk/history.h"
+#include "gtk/global_history.h"
#include "gtk/hotlist.h"
#include "gtk/download.h"
#include "gtk/menu.h"