diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-15 14:35:43 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-17 10:16:35 +0200 |
commit | 5789a1da0f2354c527bbe61f9620278b27e2e23b (patch) | |
tree | 648ede7fb9664ad2d77a81c9aa39cb5cb80aae53 /vcl/inc/unx | |
parent | a903b9ba625b7fc09640007794d6f6a6fc6addba (diff) |
loplugin:useuniqueptr in GlyphCache
Change-Id: I4d6cca83f321f74faae7d2c6d0481a864f5f0b95
Diffstat (limited to 'vcl/inc/unx')
-rw-r--r-- | vcl/inc/unx/glyphcache.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/unx/glyphcache.hxx b/vcl/inc/unx/glyphcache.hxx index 42b2f4244450..ba56ecf48b75 100644 --- a/vcl/inc/unx/glyphcache.hxx +++ b/vcl/inc/unx/glyphcache.hxx @@ -93,7 +93,7 @@ private: mutable int mnGlyphCount; FreetypeFont* mpCurrentGCFont; - FreetypeManager* mpFtManager; + std::unique_ptr<FreetypeManager> mpFtManager; }; class GlyphData |