Initialize ArchiveApp members in ctor in the sample
No real changes, but initialize members of ArchiveApp class in its ctor to avoid leaving them uninitialized.
This commit is contained in:
parent
b9c10f215d
commit
36fe1e0f66
1 changed files with 5 additions and 0 deletions
|
|
@ -26,6 +26,11 @@
|
|||
class ArchiveApp: public wxAppConsole
|
||||
{
|
||||
public:
|
||||
ArchiveApp()
|
||||
{
|
||||
m_forceZip64 = false;
|
||||
m_archiveClassFactory = NULL;
|
||||
}
|
||||
|
||||
virtual void OnInitCmdLine(wxCmdLineParser& parser) wxOVERRIDE;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue