diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-06 13:13:10 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-06 16:35:47 +0000 |
commit | 7994dafaa4978b29a2223b652c03face51c9efbd (patch) | |
tree | be467bef89375bbb8578a179f74a9f9896e11a45 /vcl | |
parent | f61c95381f623d560bed47d2a457c4737fe2a0f4 (diff) |
coverity#708652 Uninitialized scalar field
Change-Id: Ideadc6cd30edeb993ca19fd28f97c8665c6bb4a6
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/generic/app/i18n_xkb.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/vcl/unx/generic/app/i18n_xkb.cxx b/vcl/unx/generic/app/i18n_xkb.cxx index 9a12c97c2d3a..3201d1539866 100644 --- a/vcl/unx/generic/app/i18n_xkb.cxx +++ b/vcl/unx/generic/app/i18n_xkb.cxx @@ -24,10 +24,13 @@ #include "unx/i18n_xkb.hxx" SalI18N_KeyboardExtension::SalI18N_KeyboardExtension( Display* pDisplay ) - : mbUseExtension( true ), - mnDefaultGroup( 0 ) + : mbUseExtension(true) + , mnDefaultGroup(0) + , mnGroup(0) + , mnEventBase(0) + , mnErrorBase(0) + , mpDisplay(pDisplay) { - mpDisplay = pDisplay; // allow user to set the default keyboard group idx or to disable the usage // of x keyboard extension at all: |