diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-11-13 21:22:49 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-13 21:22:49 +0000 |
commit | 0b10bac9138fe560f9d108adaa7a875f78dd8ea7 (patch) | |
tree | 9b1d7e2667a1daddfc1bc50127a659edfab30f03 | |
parent | 88fde3ce509caed402348297a0b6828d5233d408 (diff) |
coverity#1251605 Uninitialized scalar field
Change-Id: I5f18bd7bcd332e28df9dcec43b9dedc664290aec
-rw-r--r-- | vcl/workben/vcldemo.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/workben/vcldemo.cxx b/vcl/workben/vcldemo.cxx index b5d2cccb6171..46538cb732bc 100644 --- a/vcl/workben/vcldemo.cxx +++ b/vcl/workben/vcldemo.cxx @@ -79,6 +79,8 @@ public: , mnSelectedRenderer(-1) , mpButton(NULL) , mpButtonWin(NULL) + , mnBounceX(1) + , mnBounceY(1) { if (!Application::LoadBrandBitmap("intro", maIntro)) Application::Abort("Failed to load intro image"); |