summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2005-06-28 22:51:29 +0000
committerAlbert Astals Cid <aacid@kde.org>2005-06-28 22:51:29 +0000
commit3b5e20465e482eb0e75a106697ee94d60aea2fdc (patch)
tree8a5f5e22b35f83c3bfa24dc20e2a0a5cee56a683
parente512cd1832a0e6d15149e12e8e67a39d335efc86 (diff)
Forgot assigning type on copy constructor
-rw-r--r--poppler/FontInfo.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/poppler/FontInfo.cc b/poppler/FontInfo.cc
index 1fed67c6..3b1d93b1 100644
--- a/poppler/FontInfo.cc
+++ b/poppler/FontInfo.cc
@@ -196,6 +196,7 @@ FontInfo::FontInfo(GfxFont *font, PDFDoc *doc) {
FontInfo::FontInfo(FontInfo& f) {
name = f.name->copy();
+ type = f.type->copy();
emb = f.emb;
subset = f.subset;
hasToUnicode = f.hasToUnicode;