aboutsummaryrefslogtreecommitdiff
path: root/src/narrative_window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/narrative_window.c')
-rw-r--r--src/narrative_window.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/narrative_window.c b/src/narrative_window.c
index e549fc1..1631f2f 100644
--- a/src/narrative_window.c
+++ b/src/narrative_window.c
@@ -187,14 +187,9 @@ static void delete_slide_sig(GSimpleAction *action, GVariant *parameter,
static struct template_id *get_templates(SCBlock *ss, int *n)
{
- struct template_id *list;
- SCInterpreter *scin;
-
- scin = sc_interp_new(NULL, NULL, NULL, NULL);
- sc_interp_run_stylesheet(scin, ss); /* ss == NULL is OK */
- list = sc_interp_get_templates(scin, n);
- sc_interp_destroy(scin);
- return list;
+ /* FIXME: From JSON stylesheet */
+ *n = 0;
+ return NULL;
}