aboutsummaryrefslogtreecommitdiff
path: root/src/presentation.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-07-23 19:38:11 +0200
committerThomas White <taw@bitwiz.org.uk>2011-07-23 19:38:11 +0200
commit64445c72214d55ba7864342b84f4da4019253c2a (patch)
treeb388063b5de00e699bf85d4a0a177364030af1cc /src/presentation.c
parent3672807f070981d6277302623f1d78af408f4ef3 (diff)
Lots of work on style sheet mechanism
Diffstat (limited to 'src/presentation.c')
-rw-r--r--src/presentation.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/presentation.c b/src/presentation.c
index b30895b..9a493d5 100644
--- a/src/presentation.c
+++ b/src/presentation.c
@@ -32,6 +32,7 @@
#include "presentation.h"
#include "slide_render.h"
#include "objects.h"
+#include "stylesheet.h"
struct slide *add_slide(struct presentation *p, int pos)
@@ -170,5 +171,7 @@ struct presentation *new_presentation()
new->editing_object = NULL;
+ new->ss = new_stylesheet();
+
return new;
}