mc> I notice that the framework creates a LOCAL wxCommandLineParser to
mc> cope with command-line arguments in
mc>
mc> bool wxAppConsoleBase::OnInit().
mc>
mc> I think the Command Line Parser object should be a member of
mc> wxAppConsoleBase because you may want to get things from it after the
mc> call to OnInit(). It seems reasonable to me that it should always be
mc> available.
The idea is that you extract any information from it in your overridden
OnCmdLineParsed(). It doesn't seem useful to keep the object which is only
used during program startup during the entire program execution.
Regards,
VZ