summaryrefslogtreecommitdiff
path: root/vcl/source/opengl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-10 08:09:43 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-10 08:09:43 +0100
commitaac9419b8142d949084ceb5d6361b9623e72d74f (patch)
treee10ff7559ea271cfc957dca4fccb1cbefd1cf90f /vcl/source/opengl
parent61d6d605447d375c0fb717486dc4c2eb085afe27 (diff)
New loplugin:conststringvar: vcl
Change-Id: I573c19e4a2f6ee041998216ea4cf29677986d731
Diffstat (limited to 'vcl/source/opengl')
-rw-r--r--vcl/source/opengl/OpenGLHelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/opengl/OpenGLHelper.cxx b/vcl/source/opengl/OpenGLHelper.cxx
index 9b91415d2392..76039a35e09a 100644
--- a/vcl/source/opengl/OpenGLHelper.cxx
+++ b/vcl/source/opengl/OpenGLHelper.cxx
@@ -170,7 +170,7 @@ namespace
OString getHexString(const sal_uInt8* pData, sal_uInt32 nLength)
{
- static const char* pHexData = "0123456789ABCDEF";
+ static const char* const pHexData = "0123456789ABCDEF";
bool bIsZero = true;
OStringBuffer aHexStr;