X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d3b9f782ef3949f583e8ac53795d36787f044fc3..53ff8df7d54cd427674fc9bffb748c8872c0d658:/include/wx/process.h diff --git a/include/wx/process.h b/include/wx/process.h index 22be173230..12d1dcce7c 100644 --- a/include/wx/process.h +++ b/include/wx/process.h @@ -104,9 +104,14 @@ public: wxInputStream *errStream); #endif // wxUSE_STREAMS + // implementation only - don't use! + // -------------------------------- + + // needs to be public since it needs to be used from wxExecute() global func + void SetPid(long pid) { m_pid = pid; } + protected: void Init(wxEvtHandler *parent, int id, int flags); - void SetPid(long pid) { m_pid = pid; } int m_id; long m_pid; @@ -123,7 +128,7 @@ protected: bool m_redirect; DECLARE_DYNAMIC_CLASS(wxProcess) - DECLARE_NO_COPY_CLASS(wxProcess) + wxDECLARE_NO_COPY_CLASS(wxProcess); }; // ---------------------------------------------------------------------------- @@ -132,7 +137,7 @@ protected: class WXDLLIMPEXP_FWD_BASE wxProcessEvent; -wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_BASE, wxEVT_END_PROCESS, wxProcessEvent ) +wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_BASE, wxEVT_END_PROCESS, wxProcessEvent ); class WXDLLIMPEXP_BASE wxProcessEvent : public wxEvent {