aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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);