[Libreoffice-commits] core.git: vcl/source
Tomaž Vajngerl
tomaz.vajngerl at collabora.co.uk
Sat Jun 16 14:47:46 UTC 2018
vcl/source/outdev/font.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit a4cd8bfea486327279d6d2a3bacc3e06e5df2745
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
Date: Sat Jun 16 16:45:23 2018 +0200
fix build because of the change to Reference<LogicalFontInstance>
Change-Id: I97c23685d70c751dc6b365db776c4438a5f05db0
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;
More information about the Libreoffice-commits
mailing list