Merge pull request #4976 from ligfx/fixwxcommandlineassertion
DolphinWX: provide empty OnCmdLineParsed
This commit is contained in:
commit
d1b343ab5a
|
@ -84,6 +84,11 @@ void DolphinApp::OnInitCmdLine(wxCmdLineParser& parser)
|
|||
parser.SetCmdLine("");
|
||||
}
|
||||
|
||||
bool DolphinApp::OnCmdLineParsed(wxCmdLineParser& parser)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool DolphinApp::OnInit()
|
||||
{
|
||||
std::lock_guard<std::mutex> lk(s_init_mutex);
|
||||
|
|
|
@ -23,6 +23,7 @@ public:
|
|||
private:
|
||||
bool OnInit() override;
|
||||
void OnInitCmdLine(wxCmdLineParser& parser) override;
|
||||
bool OnCmdLineParsed(wxCmdLineParser& parser) override;
|
||||
int OnExit() override;
|
||||
void OnFatalException() override;
|
||||
bool Initialize(int& c, wxChar** v) override;
|
||||
|
|
Loading…
Reference in New Issue