Kaydet (Commit) 7994dafa authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708652 Uninitialized scalar field

Change-Id: Ideadc6cd30edeb993ca19fd28f97c8665c6bb4a6
üst f61c9538
...@@ -24,10 +24,13 @@ ...@@ -24,10 +24,13 @@
#include "unx/i18n_xkb.hxx" #include "unx/i18n_xkb.hxx"
SalI18N_KeyboardExtension::SalI18N_KeyboardExtension( Display* pDisplay ) SalI18N_KeyboardExtension::SalI18N_KeyboardExtension( Display* pDisplay )
: mbUseExtension( true ), : mbUseExtension(true)
mnDefaultGroup( 0 ) , 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 // allow user to set the default keyboard group idx or to disable the usage
// of x keyboard extension at all: // of x keyboard extension at all:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment