diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 11:23:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-19 09:41:11 +0200 |
commit | a4d7ad970122e0877f895021a83d8692fbd2967c (patch) | |
tree | ebc6f3c31f5cf84d3e530470188d63cd785dd945 /vcl | |
parent | d0feba06767cfa3adce2db8d6bc87bc969418d28 (diff) |
cid#1451641 Unchecked return value
Change-Id: Ifc9a6d3e268af27515cdf3b2b1da471368d50e87
Reviewed-on: https://gerrit.libreoffice.org/75904
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/virdev.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/virdev.cxx b/vcl/source/gdi/virdev.cxx index ed6123ce2055..196ed44871cb 100644 --- a/vcl/source/gdi/virdev.cxx +++ b/vcl/source/gdi/virdev.cxx @@ -479,7 +479,7 @@ void VirtualDevice::ImplSetReferenceDevice( RefDevMode i_eRefDevMode, sal_Int32 mxFontCache.reset(); // get font list with scalable fonts only - AcquireGraphics(); + (void)AcquireGraphics(); mxFontCollection = pSVData->maGDIData.mxScreenFontList->Clone(); // prepare to use new font lists |