summaryrefslogtreecommitdiff
path: root/splash/SplashFTFontFile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'splash/SplashFTFontFile.cc')
-rw-r--r--splash/SplashFTFontFile.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/splash/SplashFTFontFile.cc b/splash/SplashFTFontFile.cc
index b2bf4a5c..b1f9ddb5 100644
--- a/splash/SplashFTFontFile.cc
+++ b/splash/SplashFTFontFile.cc
@@ -65,7 +65,7 @@ SplashFontFile *SplashFTFontFile::loadType1Font(SplashFTFontEngine *engineA,
}
return new SplashFTFontFile(engineA, idA, src,
- faceA, codeToGIDA, 256, gFalse, gTrue);
+ faceA, codeToGIDA, 256, false, true);
}
SplashFontFile *SplashFTFontFile::loadCIDFont(SplashFTFontEngine *engineA,
@@ -84,7 +84,7 @@ SplashFontFile *SplashFTFontFile::loadCIDFont(SplashFTFontEngine *engineA,
}
return new SplashFTFontFile(engineA, idA, src,
- faceA, codeToGIDA, codeToGIDLenA, gFalse, gFalse);
+ faceA, codeToGIDA, codeToGIDLenA, false, false);
}
SplashFontFile *SplashFTFontFile::loadTrueTypeFont(SplashFTFontEngine *engineA,
@@ -104,7 +104,7 @@ SplashFontFile *SplashFTFontFile::loadTrueTypeFont(SplashFTFontEngine *engineA,
}
return new SplashFTFontFile(engineA, idA, src,
- faceA, codeToGIDA, codeToGIDLenA, gTrue, gFalse);
+ faceA, codeToGIDA, codeToGIDLenA, true, false);
}
SplashFTFontFile::SplashFTFontFile(SplashFTFontEngine *engineA,
@@ -112,7 +112,7 @@ SplashFTFontFile::SplashFTFontFile(SplashFTFontEngine *engineA,
SplashFontSrc *srcA,
FT_Face faceA,
int *codeToGIDA, int codeToGIDLenA,
- GBool trueTypeA, GBool type1A):
+ bool trueTypeA, bool type1A):
SplashFontFile(idA, srcA)
{
engine = engineA;