diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-11-17 09:26:21 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-11-17 09:26:21 +0200 |
commit | 0fcc1718e6cc8cfadabea9ab1344046b716f51df (patch) | |
tree | 0943fcac9ff9e49b377ac2bbec4b294e8c0a8608 /vcl/workben | |
parent | 18c50cefd761efe71a5e6957422ed6f153e6ba34 (diff) |
WaE: implicit conversion (IntegralCast) from bool to 'int'
Change-Id: I0eef8d71334a29a773aaff80c9d1c1ae8b9d9842
Diffstat (limited to 'vcl/workben')
-rw-r--r-- | vcl/workben/vcldemo.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |