aboutsummaryrefslogtreecommitdiff
path: root/src/sc_editor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sc_editor.c')
-rw-r--r--src/sc_editor.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/sc_editor.c b/src/sc_editor.c
index cec0186..3972f02 100644
--- a/src/sc_editor.c
+++ b/src/sc_editor.c
@@ -2041,6 +2041,15 @@ void sc_editor_set_scale(SCEditor *e, int scale)
}
+void sc_editor_set_imagestore(SCEditor *e, ImageStore *is)
+{
+ if ( e->is != NULL ) {
+ fprintf(stderr, "WARNING: Changing imagestore\n");
+ }
+ e->is = is;
+}
+
+
SCEditor *sc_editor_new(SCBlock *scblocks, SCBlock **stylesheets,
PangoLanguage *lang, const char *storename)
{
@@ -2057,7 +2066,7 @@ SCEditor *sc_editor_new(SCBlock *scblocks, SCBlock **stylesheets,
sceditor->log_h = 100;
sceditor->border_offs_x = 0;
sceditor->border_offs_y = 0;
- sceditor->is = imagestore_new(storename);
+ sceditor->is = NULL;
sceditor->slidenum = 0;
sceditor->min_border = 0.0;
sceditor->top_editable = 0;