From 0fcc1718e6cc8cfadabea9ab1344046b716f51df Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 17 Nov 2014 09:26:21 +0200 Subject: WaE: implicit conversion (IntegralCast) from bool to 'int' Change-Id: I0eef8d71334a29a773aaff80c9d1c1ae8b9d9842 --- vcl/workben/vcldemo.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcl/workben/vcldemo.cxx b/vcl/workben/vcldemo.cxx index 94d549247410..22388249d292 100644 --- a/vcl/workben/vcldemo.cxx +++ b/vcl/workben/vcldemo.cxx @@ -712,7 +712,7 @@ public: Size aSize(maIcons[i].GetSizePixel()); // sAL_DEBUG("Draw icon '" << maIconNames[i] << "'"); - if (!i % 4) + if (!(i % 4)) rDev.DrawBitmapEx(p, maIcons[i]); else { -- cgit