diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-14 06:42:42 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-14 06:42:42 +0200 |
commit | 21c12718cabdd7acad2a2ceccc938e0df659b4f9 (patch) | |
tree | 9a14e1345ac4fba2b3bcd153fc1d101a79d74c86 /include/fitz/text.h | |
parent | 5e5ff796c9d1b4c4e4360e6823ec338845d26937 (diff) | |
download | mupdf-21c12718cabdd7acad2a2ceccc938e0df659b4f9.tar.xz |
index fonts by cid not glyph
Diffstat (limited to 'include/fitz/text.h')
-rw-r--r-- | include/fitz/text.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fitz/text.h b/include/fitz/text.h index c28d96c7..1a321f8f 100644 --- a/include/fitz/text.h +++ b/include/fitz/text.h @@ -3,7 +3,7 @@ typedef struct fz_textel_s fz_textel; struct fz_textel_s { float x, y; - int g; + int cid; }; struct fz_textnode_s |