Kaydet (Commit) 2b5caba5 authored tarafından Caolán McNamara's avatar Caolán McNamara

CID#738560 uninitialized member

Change-Id: I270455041b73450e6ed1fc5a05e68c88db4310ab
üst c4597f28
......@@ -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();
......
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