Hi! The problem really is in your header at this line
wxCondition m_ConditionStartRead; Check the API for wxCondition.wxCondition::wxCondition wxCondition(wxMutex& mutex)
Default and only constructor. The mutex must be locked by the caller before calling Wait function.
Use IsOk to check if the object was successfully intiialized. Since there is no wxCondition::wxCondition() you'll have to use a mutex. Have a look at the example given for wxCondition and either change your code or comment out that line.
upcaseupCASE ----------------------------------- If it was hard to write, it should be hard to read!- Do. Or do not. There is no try! |