]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/process.h
Add appearance tags
[wxWidgets.git] / interface / wx / process.h
index 5f99ac6d2378c3f4cbb22086525b2b67bce6e8ec..c18af8660dd4e8dc2a4ab995711584cbb4674180 100644 (file)
@@ -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();
 };