diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 11:17:46 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 12:40:30 +0000 |
commit | 86ff16b9c9af1da67656142233ec528a5bfdc6c2 (patch) | |
tree | a94677cace01e1af81fbfc9cdd4d702da49082c3 /dbaccess | |
parent | ead9f07bd23fcbb59937998c77ebc9c1a771fc3b (diff) |
coverity#738616 Uninitialized scalar field
Change-Id: I8dd9daa06c86f14430ea0a8d1485daad93f63eee
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/misc/WCPage.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dbaccess/source/ui/misc/WCPage.cxx b/dbaccess/source/ui/misc/WCPage.cxx index da553dbe4a63..4a0047047c20 100644 --- a/dbaccess/source/ui/misc/WCPage.cxx +++ b/dbaccess/source/ui/misc/WCPage.cxx @@ -64,8 +64,10 @@ OCopyTable::OCopyTable( Window * pParent ) ,m_aCB_PrimaryColumn( this, ModuleRes( CB_PRIMARY_COLUMN ) ) ,m_aFT_KeyName( this, ModuleRes( FT_KEYNAME ) ) ,m_edKeyName( this, ModuleRes( ET_KEYNAME ) ) + ,m_nOldOperation(0) ,m_pPage2(NULL) ,m_pPage3(NULL) + ,m_bPKeyAllowed(false) ,m_bUseHeaderAllowed(sal_True) { |