aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2018-03-09 20:49:01 +0100
committerThomas White <taw@physics.org>2018-03-10 21:57:50 +0100
commit1ee15922a51d9e3d9013dc546adb63f47f442b36 (patch)
treed7aa8fcd0eed82edd7de0aa97ad03a55a3094cd6 /src
parentf60b18e91d983b3bc6ad3b9dcd02c26c2afed685 (diff)
Add Meson build system
Diffstat (limited to 'src')
-rw-r--r--src/colloquium.c2
-rw-r--r--src/sc_editor.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/colloquium.c b/src/colloquium.c
index 9373d23..84dc73d 100644
--- a/src/colloquium.c
+++ b/src/colloquium.c
@@ -473,7 +473,7 @@ static void colloquium_startup(GApplication *papp)
if ( !g_file_test(app->mydir, G_FILE_TEST_IS_DIR) ) {
/* Folder not created yet */
- GFile *file = g_file_new_for_path(DATADIR"/colloquium/demo.sc");
+ GFile *file = g_file_new_for_path(DATADIR"/demo.sc");
g_application_open(G_APPLICATION(app), &file, 1, "");
app->first_run = 1;
g_object_unref(file);
diff --git a/src/sc_editor.c b/src/sc_editor.c
index 366b561..c110b1a 100644
--- a/src/sc_editor.c
+++ b/src/sc_editor.c
@@ -2075,7 +2075,7 @@ SCEditor *sc_editor_new(SCBlock *scblocks, SCBlock **stylesheets,
sceditor->bg_pixbuf = NULL;
err = NULL;
- sceditor->bg_pixbuf = gdk_pixbuf_new_from_file(DATADIR"/colloquium/sky.png", &err);
+ sceditor->bg_pixbuf = gdk_pixbuf_new_from_file(DATADIR"/sky.png", &err);
if ( sceditor->bg_pixbuf == NULL ) {
fprintf(stderr, "Failed to load background: %s\n",
err->message);