summaryrefslogtreecommitdiff
path: root/vcl/headless/svptext.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-10 12:11:59 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-11 06:51:48 +0000
commit6104a9807500c59196ff007d24cfe111f0b2754a (patch)
tree1b91d7936d2895fcb30fe8cd47239ca3515837ed /vcl/headless/svptext.cxx
parent1da9b4c24e806ad2447b4a656e2a7192755bb6a8 (diff)
remove unused return type from SalGraphics::SetFont
Change-Id: I0ca41130f5e1028a70f1242f7af3366b7c57c572 Reviewed-on: https://gerrit.libreoffice.org/24833 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/headless/svptext.cxx')
-rw-r--r--vcl/headless/svptext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/headless/svptext.cxx b/vcl/headless/svptext.cxx
index 4346713f6fb9..e8fd5256a7ed 100644
--- a/vcl/headless/svptext.cxx
+++ b/vcl/headless/svptext.cxx
@@ -24,9 +24,9 @@
#include <config_cairo_canvas.h>
#include "impfontmetricdata.hxx"
-sal_uInt16 SvpSalGraphics::SetFont( FontSelectPattern* pIFSD, int nFallbackLevel )
+void SvpSalGraphics::SetFont( FontSelectPattern* pIFSD, int nFallbackLevel )
{
- return m_aTextRenderImpl.SetFont(pIFSD, nFallbackLevel);
+ m_aTextRenderImpl.SetFont(pIFSD, nFallbackLevel);
}
void SvpSalGraphics::GetFontMetric( ImplFontMetricDataPtr& xFontMetric, int nFallbackLevel )