summaryrefslogtreecommitdiff
path: root/vcl/workben
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-09-13 13:08:33 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-09-14 11:40:32 +0200
commit59887868da3499c68d5f259cfa48178354397448 (patch)
treefea3595f08d0a2ff07070c34bc2b94bbb7a446e1 /vcl/workben
parentafb0dfc41ebb0a6a96ae31c122c7f97743dc7486 (diff)
loplugin:constfields in vcl
Change-Id: I1072642be4fdfa720e61f2d7bad3c2701eb81610 Reviewed-on: https://gerrit.libreoffice.org/60430 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/workben')
-rw-r--r--vcl/workben/vcldemo.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/workben/vcldemo.cxx b/vcl/workben/vcldemo.cxx
index 4a812d370eea..9b9b088e9b94 100644
--- a/vcl/workben/vcldemo.cxx
+++ b/vcl/workben/vcldemo.cxx
@@ -351,9 +351,9 @@ public:
aToplevelRegions[2].BottomRight());
DemoRenderer::clearRects(rDev,aSubRegions);
struct {
- bool mbClip;
- bool mbArabicText;
- bool mbRotate;
+ bool const mbClip;
+ bool const mbArabicText;
+ bool const mbRotate;
} aRenderData[] = {
{ false, false, false },
{ false, true, false },
@@ -1716,7 +1716,7 @@ class DemoWin : public WorkWindow
class RenderThread : public salhelper::Thread {
DemoWin &mrWin;
- sal_uInt32 mnDelaySecs = 0;
+ sal_uInt32 const mnDelaySecs = 0;
public:
RenderThread(DemoWin &rWin, sal_uInt32 nDelaySecs)
: Thread("vcldemo render thread")