summaryrefslogtreecommitdiff
path: root/vcl/inc/impfontcache.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-08-14 12:05:31 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-08-14 15:30:14 +0200
commit9a2c347e76c330b45504c8219510c9ef86503b86 (patch)
tree5b8065100740e67350a431c1ce3b69ef7e39446e /vcl/inc/impfontcache.hxx
parent97e49876086bbdcb58ae0c22d9145c453f239468 (diff)
inline some use-once typedefs
Change-Id: Ifefdb1ad20d09e257064171e458b2eb33065f5de Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100733 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/inc/impfontcache.hxx')
-rw-r--r--vcl/inc/impfontcache.hxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/vcl/inc/impfontcache.hxx b/vcl/inc/impfontcache.hxx
index 78dfb4a71ad9..07e04a0cc848 100644
--- a/vcl/inc/impfontcache.hxx
+++ b/vcl/inc/impfontcache.hxx
@@ -61,7 +61,6 @@ struct GlyphBoundRectCacheHash
typedef o3tl::lru_map<GlyphBoundRectCacheKey, tools::Rectangle,
GlyphBoundRectCacheHash> GlyphBoundRectCache;
-typedef GlyphBoundRectCache::key_value_pair_t GlyphBoundRectCachePair;
class ImplFontCache
{
@@ -70,7 +69,6 @@ private:
struct IFSD_Equal { bool operator()( const FontSelectPattern&, const FontSelectPattern& ) const; };
struct IFSD_Hash { size_t operator()( const FontSelectPattern& ) const; };
typedef o3tl::lru_map<FontSelectPattern, rtl::Reference<LogicalFontInstance>, IFSD_Hash, IFSD_Equal> FontInstanceList;
- typedef FontInstanceList::key_value_pair_t FontInstanceListPair;
LogicalFontInstance* mpLastHitCacheEntry; ///< keeps the last hit cache entry
FontInstanceList maFontInstanceList;