summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-05 13:07:53 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-07 09:16:23 +0100
commit2b5caba5d8780ad36a6403d811a5004fd9f84640 (patch)
tree80544c1fcbc10aaad097be292d892a626123f258 /basctl
parentc4597f281e0e865f190669d583a321a28c2e3e35 (diff)
CID#738560 uninitialized member
Change-Id: I270455041b73450e6ed1fc5a05e68c88db4310ab
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/moduldl2.cxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/basctl/source/basicide/moduldl2.cxx b/basctl/source/basicide/moduldl2.cxx
index c1b76c5ea91f..14f2fcee178a 100644
--- a/basctl/source/basicide/moduldl2.cxx
+++ b/basctl/source/basicide/moduldl2.cxx
@@ -477,11 +477,12 @@ IMPL_LINK_NOARG(ExportDialog, OkButtonHandler)
}
ExportDialog::ExportDialog( Window * pParent )
- : ModalDialog( pParent, IDEResId( RID_DLG_EXPORT ) ),
- maExportAsPackageButton( this, IDEResId( RB_EXPORTASPACKAGE ) ),
- maExportAsBasicButton( this, IDEResId( RB_EXPORTASBASIC ) ),
- maOKButton( this, IDEResId( RID_PB_OK ) ),
- maCancelButton( this, IDEResId( RID_PB_CANCEL ) )
+ : ModalDialog( pParent, IDEResId( RID_DLG_EXPORT ) )
+ , maExportAsPackageButton( this, IDEResId( RB_EXPORTASPACKAGE ) )
+ , maExportAsBasicButton( this, IDEResId( RB_EXPORTASBASIC ) )
+ , maOKButton( this, IDEResId( RID_PB_OK ) )
+ , maCancelButton( this, IDEResId( RID_PB_CANCEL ) )
+ , mbExportAsPackage(false)
{
FreeResource();
maExportAsPackageButton.Check();