X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/12f5e1e78fe906050ff2fee9529476db332633f0..2a8312bced9d3f3415383a79a15cad2acf447b7e:/interface/wx/process.h diff --git a/interface/wx/process.h b/interface/wx/process.h index 5f99ac6d23..c18af8660d 100644 --- a/interface/wx/process.h +++ b/interface/wx/process.h @@ -100,7 +100,7 @@ public: /** Destroys the wxProcess object. */ - ~wxProcess(); + virtual ~wxProcess(); /** Closes the output stream (the one connected to the stdin of the child @@ -214,7 +214,7 @@ public: @param status The exit code of the process. */ - void OnTerminate(int pid, int status); + virtual void OnTerminate(int pid, int status); /** This static method replaces the standard @c popen() function: it launches @@ -290,6 +290,6 @@ public: /** Returns the process id. */ - int GetPid() const; + int GetPid(); };