summaryrefslogtreecommitdiff
path: root/vcl/unx/generic/gdi/font.cxx
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2017-10-27 10:14:42 +0200
committerJan-Marek Glogowski <glogow@fbihome.de>2017-10-30 21:20:33 +0100
commit620492ca19d1e5c34312b49f3d4fef24a928412a (patch)
tree1b7434d1dd130afe93f6c4338e347d577b1cab88 /vcl/unx/generic/gdi/font.cxx
parent28c0bd6379c0c40bcaf3ab994ef5aee711fe58bb (diff)
Constify some VCL interface functions
This drops the bPaintEnd optimization for vertical and horizontal lines on Windows, where Polyline and LineTo exclude painting the last pixel of the line. Instead we just always set the last pixel. It also merges the various "SetPixel" call sites into a common drawPixelImpl function. Change-Id: I01cc3c01c908ba74f7978fa90eaaf8d88f923ae3 Reviewed-on: https://gerrit.libreoffice.org/43939 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'vcl/unx/generic/gdi/font.cxx')
-rw-r--r--vcl/unx/generic/gdi/font.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/generic/gdi/font.cxx b/vcl/unx/generic/gdi/font.cxx
index c872963d159c..bae13f646037 100644
--- a/vcl/unx/generic/gdi/font.cxx
+++ b/vcl/unx/generic/gdi/font.cxx
@@ -70,7 +70,7 @@ bool X11SalGraphics::GetFontCapabilities(vcl::FontCapabilities &rGetImplFontCapa
// SalGraphics
-void X11SalGraphics::SetFont( FontSelectPattern *pEntry, int nFallbackLevel )
+void X11SalGraphics::SetFont( const FontSelectPattern *pEntry, int nFallbackLevel )
{
mxTextRenderImpl->SetFont(pEntry, nFallbackLevel);
}