summaryrefslogtreecommitdiff
path: root/frontends/kolibrios/fb/fbtk
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/kolibrios/fb/fbtk')
-rw-r--r--frontends/kolibrios/fb/fbtk/bitmap.c6
-rw-r--r--frontends/kolibrios/fb/fbtk/event.c6
-rw-r--r--frontends/kolibrios/fb/fbtk/fbtk.c6
-rw-r--r--frontends/kolibrios/fb/fbtk/fill.c4
-rw-r--r--frontends/kolibrios/fb/fbtk/osk.c6
-rw-r--r--frontends/kolibrios/fb/fbtk/scroll.c6
-rw-r--r--frontends/kolibrios/fb/fbtk/text.c10
-rw-r--r--frontends/kolibrios/fb/fbtk/user.c4
-rw-r--r--frontends/kolibrios/fb/fbtk/window.c4
9 files changed, 26 insertions, 26 deletions
diff --git a/frontends/kolibrios/fb/fbtk/bitmap.c b/frontends/kolibrios/fb/fbtk/bitmap.c
index 759b626d9..ef49471d4 100644
--- a/frontends/kolibrios/fb/fbtk/bitmap.c
+++ b/frontends/kolibrios/fb/fbtk/bitmap.c
@@ -26,9 +26,9 @@
#include "netsurf/browser_window.h"
-#include "framebuffer/gui.h"
-#include "framebuffer/fbtk.h"
-#include "framebuffer/image_data.h"
+#include "kolibrios/fb/gui.h"
+#include "kolibrios/fb/fbtk.h"
+#include "kolibrios/fb/image_data.h"
#include "widget.h"
diff --git a/frontends/kolibrios/fb/fbtk/event.c b/frontends/kolibrios/fb/fbtk/event.c
index a48e63809..b5db9e5bd 100644
--- a/frontends/kolibrios/fb/fbtk/event.c
+++ b/frontends/kolibrios/fb/fbtk/event.c
@@ -34,9 +34,9 @@
#include "netsurf/browser_window.h"
#include "netsurf/keypress.h"
-#include "framebuffer/gui.h"
-#include "framebuffer/fbtk.h"
-#include "framebuffer/image_data.h"
+#include "kolibrios/fb/gui.h"
+#include "kolibrios/fb/fbtk.h"
+#include "kolibrios/fb/image_data.h"
#include "widget.h"
diff --git a/frontends/kolibrios/fb/fbtk/fbtk.c b/frontends/kolibrios/fb/fbtk/fbtk.c
index c63a6d8c9..5d1f25ac9 100644
--- a/frontends/kolibrios/fb/fbtk/fbtk.c
+++ b/frontends/kolibrios/fb/fbtk/fbtk.c
@@ -37,9 +37,9 @@
#include "netsurf/browser_window.h"
#include "netsurf/plotters.h"
-#include "framebuffer/gui.h"
-#include "framebuffer/fbtk.h"
-#include "framebuffer/image_data.h"
+#include "kolibrios/fb/gui.h"
+#include "kolibrios/fb/fbtk.h"
+#include "kolibrios/fb/image_data.h"
#include "widget.h"
diff --git a/frontends/kolibrios/fb/fbtk/fill.c b/frontends/kolibrios/fb/fbtk/fill.c
index 9377933cc..015febf6d 100644
--- a/frontends/kolibrios/fb/fbtk/fill.c
+++ b/frontends/kolibrios/fb/fbtk/fill.c
@@ -26,8 +26,8 @@
#include "netsurf/browser_window.h"
-#include "framebuffer/gui.h"
-#include "framebuffer/fbtk.h"
+#include "kolibrios/fb/gui.h"
+#include "kolibrios/fb/fbtk.h"
#include "widget.h"
diff --git a/frontends/kolibrios/fb/fbtk/osk.c b/frontends/kolibrios/fb/fbtk/osk.c
index 628fe9abd..b582534d7 100644
--- a/frontends/kolibrios/fb/fbtk/osk.c
+++ b/frontends/kolibrios/fb/fbtk/osk.c
@@ -29,9 +29,9 @@
#include "utils/log.h"
#include "netsurf/browser_window.h"
-#include "framebuffer/gui.h"
-#include "framebuffer/fbtk.h"
-#include "framebuffer/image_data.h"
+#include "kolibrios/fb/gui.h"
+#include "kolibrios/fb/fbtk.h"
+#include "kolibrios/fb/image_data.h"
#include "widget.h"
diff --git a/frontends/kolibrios/fb/fbtk/scroll.c b/frontends/kolibrios/fb/fbtk/scroll.c
index cc98fb2dd..8fb5a6ba6 100644
--- a/frontends/kolibrios/fb/fbtk/scroll.c
+++ b/frontends/kolibrios/fb/fbtk/scroll.c
@@ -30,9 +30,9 @@
#include "utils/log.h"
#include "netsurf/browser_window.h"
-#include "framebuffer/gui.h"
-#include "framebuffer/fbtk.h"
-#include "framebuffer/image_data.h"
+#include "kolibrios/fb/gui.h"
+#include "kolibrios/fb/fbtk.h"
+#include "kolibrios/fb/image_data.h"
#include "widget.h"
diff --git a/frontends/kolibrios/fb/fbtk/text.c b/frontends/kolibrios/fb/fbtk/text.c
index 31417c2e0..948c5ffd8 100644
--- a/frontends/kolibrios/fb/fbtk/text.c
+++ b/frontends/kolibrios/fb/fbtk/text.c
@@ -31,11 +31,11 @@
#include "netsurf/browser_window.h"
#include "netsurf/plotters.h"
-#include "framebuffer/gui.h"
-#include "framebuffer/fbtk.h"
-#include "framebuffer/font.h"
-#include "framebuffer/framebuffer.h"
-#include "framebuffer/image_data.h"
+#include "kolibrios/fb/gui.h"
+#include "kolibrios/fb/fbtk.h"
+#include "kolibrios/fb/font.h"
+#include "kolibrios/fb/framebuffer.h"
+#include "kolibrios/fb/image_data.h"
#include "widget.h"
diff --git a/frontends/kolibrios/fb/fbtk/user.c b/frontends/kolibrios/fb/fbtk/user.c
index de547ab46..9527dbd75 100644
--- a/frontends/kolibrios/fb/fbtk/user.c
+++ b/frontends/kolibrios/fb/fbtk/user.c
@@ -22,8 +22,8 @@
#include <stdbool.h>
#include <libnsfb.h>
-#include "framebuffer/gui.h"
-#include "framebuffer/fbtk.h"
+#include "kolibrios/fb/gui.h"
+#include "kolibrios/fb/fbtk.h"
#include "widget.h"
diff --git a/frontends/kolibrios/fb/fbtk/window.c b/frontends/kolibrios/fb/fbtk/window.c
index b385e8e3f..020bfbed8 100644
--- a/frontends/kolibrios/fb/fbtk/window.c
+++ b/frontends/kolibrios/fb/fbtk/window.c
@@ -26,8 +26,8 @@
#include "netsurf/browser_window.h"
-#include "framebuffer/gui.h"
-#include "framebuffer/fbtk.h"
+#include "kolibrios/fb/gui.h"
+#include "kolibrios/fb/fbtk.h"
#include "widget.h"