poppler/SplashOutputDev.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
New commits: commit 4388cb69114e406ec29e8b6976d1a900e4ab1b7d Author: Albert Astals Cid <[email protected]> Date: Sun Mar 11 23:37:39 2012 +0100 Make doUpdateFont protected So that people inheriting from SplashOutputDev *yuck* can use it more easily Bug 46622 diff --git a/poppler/SplashOutputDev.h b/poppler/SplashOutputDev.h index 91e678f..95a7f65 100644 --- a/poppler/SplashOutputDev.h +++ b/poppler/SplashOutputDev.h @@ -20,6 +20,7 @@ // Copyright (C) 2011 Andreas Hartmetz <[email protected]> // Copyright (C) 2011 Andrea Canciani <[email protected]> // Copyright (C) 2011 Adrian Johnson <[email protected]> +// Copyright (C) 2012 Albert Astals Cid <[email protected]> // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git @@ -349,6 +350,9 @@ public: void setFreeTypeHinting(GBool enable, GBool enableSlightHinting); +protected: + void doUpdateFont(GfxState *state); + private: GBool univariateShadedFill(GfxState *state, SplashUnivariatePattern *pattern, double tMin, double tMax); @@ -362,7 +366,6 @@ private: int overprintMode, GfxColor *singleColor, GBool grayIndexed = gFalse); SplashPath *convertPath(GfxState *state, GfxPath *path, GBool dropEmptySubpaths); - void doUpdateFont(GfxState *state); void drawType3Glyph(GfxState *state, T3FontCache *t3Font, T3FontCacheTag *tag, Guchar *data); static GBool imageMaskSrc(void *data, SplashColorPtr line); _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
