summaryrefslogtreecommitdiff
path: root/splash/SplashFTFont.h
diff options
context:
space:
mode:
Diffstat (limited to 'splash/SplashFTFont.h')
-rw-r--r--splash/SplashFTFont.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/splash/SplashFTFont.h b/splash/SplashFTFont.h
index 98cb29df..7d5c1e32 100644
--- a/splash/SplashFTFont.h
+++ b/splash/SplashFTFont.h
@@ -50,19 +50,19 @@ public:
virtual ~SplashFTFont();
// Munge xFrac and yFrac before calling SplashFont::getGlyph.
- virtual GBool getGlyph(int c, int xFrac, int yFrac,
- SplashGlyphBitmap *bitmap, int x0, int y0, SplashClip *clip, SplashClipResult *clipRes);
+ GBool getGlyph(int c, int xFrac, int yFrac,
+ SplashGlyphBitmap *bitmap, int x0, int y0, SplashClip *clip, SplashClipResult *clipRes) override;
// Rasterize a glyph. The <xFrac> and <yFrac> values are the same
// as described for getGlyph.
- virtual GBool makeGlyph(int c, int xFrac, int yFrac,
- SplashGlyphBitmap *bitmap, int x0, int y0, SplashClip *clip, SplashClipResult *clipRes);
+ GBool makeGlyph(int c, int xFrac, int yFrac,
+ SplashGlyphBitmap *bitmap, int x0, int y0, SplashClip *clip, SplashClipResult *clipRes) override;
// Return the path for a glyph.
- virtual SplashPath *getGlyphPath(int c);
+ SplashPath *getGlyphPath(int c) override;
// Return the advance of a glyph. (in 0..1 range)
- virtual double getGlyphAdvance(int c);
+ double getGlyphAdvance(int c) override;
private: