aboutsummaryrefslogtreecommitdiff
path: root/src/slide_window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/slide_window.c')
-rw-r--r--src/slide_window.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/slide_window.c b/src/slide_window.c
index a9f8459..b010d1b 100644
--- a/src/slide_window.c
+++ b/src/slide_window.c
@@ -238,7 +238,6 @@ SlideWindow *slide_window_open(struct presentation *p, SCBlock *scblocks,
{
GtkWidget *window;
SlideWindow *sw;
- SCBlock *stylesheets[2];
Colloquium *app = COLLOQUIUM(papp);
sw = calloc(1, sizeof(SlideWindow));
@@ -255,11 +254,8 @@ SlideWindow *slide_window_open(struct presentation *p, SCBlock *scblocks,
g_signal_connect(G_OBJECT(window), "destroy",
G_CALLBACK(sw_close_sig), sw);
- stylesheets[0] = p->stylesheet;
- stylesheets[1] = NULL;
-
sw->scblocks = scblocks;
- sw->sceditor = sc_editor_new(scblocks, stylesheets, p->lang,
+ sw->sceditor = sc_editor_new(scblocks, p->stylesheet, p->lang,
colloquium_get_imagestore(app));
sc_editor_set_slidenum(sw->sceditor, slide_number(sw->p, scblocks));
sc_editor_set_scale(sw->sceditor, 1);