summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-07-01 14:27:04 +0100
committerVincent Sanders <vince@kyllikki.org>2016-07-01 14:27:04 +0100
commit8066d1c8b4ef4e8e19d22aa2d92950339271b351 (patch)
treea00969fcd198afdd65b647afa889d97ad535f084 /render
parent0758af6631674d2ca88ca127c4b42842821ab7d0 (diff)
downloadnetsurf-8066d1c8b4ef4e8e19d22aa2d92950339271b351.tar.gz
netsurf-8066d1c8b4ef4e8e19d22aa2d92950339271b351.tar.bz2
move key press enums and operations to their own header
Diffstat (limited to 'render')
-rw-r--r--render/box_textarea.c2
-rw-r--r--render/html_interaction.c2
-rw-r--r--render/textplain.c8
3 files changed, 6 insertions, 6 deletions
diff --git a/render/box_textarea.c b/render/box_textarea.c
index 79ace8dea..44f5c0b16 100644
--- a/render/box_textarea.c
+++ b/render/box_textarea.c
@@ -24,8 +24,8 @@
#include "utils/config.h"
#include "utils/log.h"
+#include "netsurf/keypress.h"
#include "desktop/textarea.h"
-#include "desktop/textinput.h"
#include "render/box_textarea.h"
#include "render/font.h"
diff --git a/render/html_interaction.c b/render/html_interaction.c
index f0b50f8d3..e727a9ffc 100644
--- a/render/html_interaction.c
+++ b/render/html_interaction.c
@@ -39,12 +39,12 @@
#include "netsurf/mouse.h"
#include "netsurf/misc.h"
#include "netsurf/layout.h"
+#include "netsurf/keypress.h"
#include "content/hlcache.h"
#include "desktop/frames.h"
#include "desktop/scrollbar.h"
#include "desktop/selection.h"
#include "desktop/textarea.h"
-#include "desktop/textinput.h"
#include "javascript/js.h"
#include "desktop/gui_internal.h"
diff --git a/render/textplain.c b/render/textplain.c
index b008ab8da..ae148697e 100644
--- a/render/textplain.c
+++ b/render/textplain.c
@@ -38,16 +38,16 @@
#include "utils/utils.h"
#include "utils/utf8.h"
#include "netsurf/content.h"
+#include "netsurf/keypress.h"
+#include "netsurf/browser_window.h"
+#include "netsurf/plotters.h"
+#include "netsurf/layout.h"
#include "content/content_protected.h"
#include "content/hlcache.h"
#include "css/utils.h"
-#include "netsurf/browser_window.h"
#include "utils/nsoption.h"
-#include "netsurf/plotters.h"
#include "desktop/search.h"
#include "desktop/selection.h"
-#include "desktop/textinput.h"
-#include "netsurf/layout.h"
#include "desktop/gui_internal.h"
#include "render/search.h"