diff options
Diffstat (limited to 'libstorycode/narrative_priv.h')
-rw-r--r-- | libstorycode/narrative_priv.h | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/libstorycode/narrative_priv.h b/libstorycode/narrative_priv.h index 059b015..c1695e3 100644 --- a/libstorycode/narrative_priv.h +++ b/libstorycode/narrative_priv.h @@ -43,18 +43,13 @@ struct narrative_item enum narrative_item_type type; /* For TEXT, SLIDETITLE, PRESTITLE */ - char **paragraphs; - int n_paras; + char *text; enum alignment align; #ifdef HAVE_PANGO - PangoLayout **layouts; + PangoLayout *layout; +#else + void *layout; #endif - - /* For IMAGE */ - char *filename; - - /* For TEXT and IMAGE */ - struct frame_geom geom; }; |