X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/afadf3bc6ae9e9f91a683e29fa457c9b5d9bf02c..5836c9080be6e3748580755dc9bd371e17e1018c:/include/wx/process.h diff --git a/include/wx/process.h b/include/wx/process.h index cfc4ca9627..91c71032eb 100644 --- a/include/wx/process.h +++ b/include/wx/process.h @@ -114,8 +114,12 @@ public: // the exit code int GetExitCode() { return m_exitcode; } + // implement the base class pure virtual + virtual wxEvent *Clone() const { return new wxProcessEvent(*this); } + public: - int m_pid, m_exitcode; + int m_pid, + m_exitcode; DECLARE_DYNAMIC_CLASS(wxProcessEvent) };