summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2018-06-16 16:45:23 +0200
committerTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2018-06-16 16:47:20 +0200
commita4cd8bfea486327279d6d2a3bacc3e06e5df2745 (patch)
treea4acfef1652064bb4f536f4f0820d28786220e8b
parent00e61a2a05501fbdc7fe1b3e8c3f34f62f0c8163 (diff)
fix build because of the change to Reference<LogicalFontInstance>
Change-Id: I97c23685d70c751dc6b365db776c4438a5f05db0
-rw-r--r--vcl/source/outdev/font.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/outdev/font.cxx b/vcl/source/outdev/font.cxx
index 2f9a7f7df570..318b9ffe116a 100644
--- a/vcl/source/outdev/font.cxx
+++ b/vcl/source/outdev/font.cxx
@@ -174,7 +174,7 @@ bool OutputDevice::GetFontFeatures(std::vector<vcl::font::Feature>& rFontFeature
if (!mpFontInstance)
return false;
- LogicalFontInstance* pFontInstance = mpFontInstance;
+ LogicalFontInstance* pFontInstance = mpFontInstance.get();
if (!pFontInstance)
return false;