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:
Vadim Zeitlin
2018-03-30 22:53:07 +02:00
parent b9c10f215d
commit 36fe1e0f66

View File

@@ -26,6 +26,11 @@
class ArchiveApp: public wxAppConsole
{
public:
ArchiveApp()
{
m_forceZip64 = false;
m_archiveClassFactory = NULL;
}
virtual void OnInitCmdLine(wxCmdLineParser& parser) wxOVERRIDE;