*** dlgClasses.h.old Wed Aug 11 23:20:08 2004 --- dlgClasses.h Mon Aug 16 16:04:31 2004 *************** *** 111,122 **** --- 111,132 ---- int pid; bool done, final; + #if __GNUC__ >= 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) + // ANSI spec 11.5 is quite brain dead about pointers of protected members: In order to access + // them using the base class name, they can't be protected. + // apparently, only gcc 3.4 knows that; other compilers take protected as protected. + public: + + #endif + void OnOK(wxCommandEvent& ev); void OnCancel(wxCommandEvent& ev); void OnClose(wxCloseEvent& event); void OnEndProcess(wxProcessEvent& event); void OnPollProcess(wxTimerEvent& event); + + protected: void checkStreams(); void readStream(wxInputStream *input);