X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/afadf3bc6ae9e9f91a683e29fa457c9b5d9bf02c..d30f0930060a3091d7326dff8c4e5fa09f638e99:/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) };