summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDon Lewis <truckman@apache.org>2018-08-22 16:58:51 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-08-24 12:56:57 +0200
commit91a70317a34826549ed2b1089b3a8e5b0200bdd6 (patch)
treeecdb2c2b466406cd8d9aa5983ce72ba7b6276239
parente25a812000f244ed1ce3107b0102064e48e38dd3 (diff)
Fix int vs sal_GlyphId
(cherry picked from commit 7b63e739fc22b8ade19cbd6fd5a343d0b457f751) Change-Id: Ic3606609bbdcaa07340b6a5d1cd7210ddd627ed7 Reviewed-on: https://gerrit.libreoffice.org/59546 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--vcl/inc/unx/glyphcache.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/unx/glyphcache.hxx b/vcl/inc/unx/glyphcache.hxx
index 2d1caf537b9c..203fa031d8db 100644
--- a/vcl/inc/unx/glyphcache.hxx
+++ b/vcl/inc/unx/glyphcache.hxx
@@ -159,7 +159,7 @@ private:
void ApplyGlyphTransform(bool bVertical, FT_Glyph) const;
- typedef std::unordered_map<int,GlyphData> GlyphList;
+ typedef std::unordered_map<sal_GlyphId, GlyphData> GlyphList;
mutable GlyphList maGlyphList;
rtl::Reference<FreetypeFontInstance> mpFontInstance;