aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/slide_priv.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-09-20 17:12:29 +0200
committerThomas White <taw@physics.org>2019-10-05 17:03:25 +0200
commit387858893a1a858e8205aae28a3609006c0c717d (patch)
tree1a52586a133e864097c6b3aa4c4e66aea2c14bdd /libstorycode/slide_priv.h
parent03ca4360631d5b0438912470c483989d294d7a1e (diff)
Parse emphasis blocks in Bison
Diffstat (limited to 'libstorycode/slide_priv.h')
-rw-r--r--libstorycode/slide_priv.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libstorycode/slide_priv.h b/libstorycode/slide_priv.h
index 8479463..64e6d75 100644
--- a/libstorycode/slide_priv.h
+++ b/libstorycode/slide_priv.h
@@ -41,7 +41,8 @@ enum slide_item_type
struct slide_text_paragraph
{
- char *text;
+ struct text_run *runs;
+ int n_runs;
#ifdef HAVE_PANGO
PangoLayout *layout;
#else