summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/html.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/mupdf/html.h b/include/mupdf/html.h
index 8d649ec9..557809df 100644
--- a/include/mupdf/html.h
+++ b/include/mupdf/html.h
@@ -165,6 +165,7 @@ enum
{
FLOW_WORD,
FLOW_GLUE,
+ FLOW_BREAK,
FLOW_IMAGE,
};
@@ -173,7 +174,8 @@ struct fz_html_flow_s
int type;
float x, y, w, h, em;
fz_css_style *style;
- char *text, *broken_text;
+ char *text;
+ int expand;
fz_image *image;
fz_html_flow *next;
};