summaryrefslogtreecommitdiff
path: root/vcl/osx/salnativewidgets.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-08-07 08:14:27 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-08-07 08:14:27 +0200
commit5e4476b6ecda4be8a3271185bfc5d1aff58ce3af (patch)
tree088c9a686397b2d99cf51d559db209ede86f198d /vcl/osx/salnativewidgets.cxx
parent0451703e2eff960c12443e2ab8d58b2d91754f3c (diff)
loplugin:oncevar
Change-Id: I678b1bf281ae4de4a75f8c83398ee19f75b4f278
Diffstat (limited to 'vcl/osx/salnativewidgets.cxx')
-rw-r--r--vcl/osx/salnativewidgets.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/salnativewidgets.cxx b/vcl/osx/salnativewidgets.cxx
index b88aadb444e7..56ac7f2131bf 100644
--- a/vcl/osx/salnativewidgets.cxx
+++ b/vcl/osx/salnativewidgets.cxx
@@ -590,7 +590,7 @@ bool AquaSalGraphics::drawNativeControl(ControlType nType,
// Perhaps some other HIThemeButtonDrawInfo setting would do the trick ?
CGContextSetShouldAntialias( mrContext, true );
- CGFloat aGrey[] = { 0.45, 0.45, 0.45, 1.0 };
+ CGFloat const aGrey[] = { 0.45, 0.45, 0.45, 1.0 };
CGContextSetFillColor( mrContext, aGrey );
CGContextBeginPath( mrContext );
float x = rc.origin.x + rc.size.width;