summaryrefslogtreecommitdiff
path: root/vcl/unx/generic/gdi/cairotextrender.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-03-23 21:25:44 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-03-24 11:24:32 +0000
commit27bcd3137e522e1e5c507a4c754a448f8fe08846 (patch)
tree9b9898c8d1576597877485944b1fa927fb1385e9 /vcl/unx/generic/gdi/cairotextrender.cxx
parenta298648302b4ba7765816f3fbe4d89c0cfcb3a57 (diff)
shared_ptr->unique_ptr
Change-Id: I89aa885c2d5a5c1150ac83b515c0bb84ff2ce039
Diffstat (limited to 'vcl/unx/generic/gdi/cairotextrender.cxx')
-rw-r--r--vcl/unx/generic/gdi/cairotextrender.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/generic/gdi/cairotextrender.cxx b/vcl/unx/generic/gdi/cairotextrender.cxx
index 842a6b643ed7..11cedcc66701 100644
--- a/vcl/unx/generic/gdi/cairotextrender.cxx
+++ b/vcl/unx/generic/gdi/cairotextrender.cxx
@@ -229,7 +229,7 @@ void CairoTextRender::DrawTextLayout(const CommonSalLayout& rLayout)
FT_Face aFace = rFont.GetFtFace();
CairoFontsCache::CacheId aId;
aId.maFace = aFace;
- aId.mpOptions = rFont.GetFontOptions().get();
+ aId.mpOptions = rFont.GetFontOptions();
aId.mbEmbolden = rFont.NeedsArtificialBold();
cairo_matrix_t m;