summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-01 12:09:43 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-11-01 12:12:36 (EDT)
commitad3119cf41d508095950cf6d5c01aed94bc70695 (patch)
treea12bdd751c1b262c4f45276a82ca46e3934ad1eb /src
parentda89b824d7d05edf1f2e27a63bbbce2a1d3a333a (diff)
downloadmarquee-ad3119cf41d508095950cf6d5c01aed94bc70695.zip
marquee-ad3119cf41d508095950cf6d5c01aed94bc70695.tar.gz
marquee-ad3119cf41d508095950cf6d5c01aed94bc70695.tar.bz2
src/resources.[ch]: Move under src/utils/
Diffstat (limited to 'src')
-rw-r--r--src/about.c2
-rw-r--r--src/utils/resources.c (renamed from src/resources.c)2
-rw-r--r--src/utils/resources.h (renamed from src/resources.h)2
-rw-r--r--src/view-source.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/about.c b/src/about.c
index 6eb3a6c..41cb501 100644
--- a/src/about.c
+++ b/src/about.c
@@ -27,8 +27,8 @@
#include "about/paths.h"
#include "application.h"
-#include "resources.h"
#include "string-utils.h"
+#include "utils/resources.h"
void
mq_about_request(WebKitURISchemeRequest *request, MqApplication *application)
diff --git a/src/resources.c b/src/utils/resources.c
index 32fe0c6..7272cec 100644
--- a/src/resources.c
+++ b/src/utils/resources.c
@@ -24,7 +24,7 @@
#include <glib.h>
#include <webkit2/webkit2.h>
-#include "application.h"
+#include "../application.h"
static const gchar *error_document =
"<!doctype html>\n"
diff --git a/src/resources.h b/src/utils/resources.h
index 4628140..e545dc1 100644
--- a/src/resources.h
+++ b/src/utils/resources.h
@@ -21,7 +21,7 @@
#include <webkit2/webkit2.h>
-#include "application.h"
+#include "../application.h"
void
mq_resource_response(MqApplication *application, const gchar *path,
diff --git a/src/view-source.c b/src/view-source.c
index faa5419..5d77068 100644
--- a/src/view-source.c
+++ b/src/view-source.c
@@ -27,8 +27,8 @@
#include <webkit2/webkit2.h>
#include "application.h"
-#include "resources.h"
#include "string-utils.h"
+#include "utils/resources.h"
typedef struct {
WebKitURISchemeRequest *request;