// error testing
wxStreamError GetLastError() const { return m_lasterror; }
- bool IsOk() const { return GetLastError() == wxSTREAM_NO_ERROR; }
+ virtual bool IsOk() const { return GetLastError() == wxSTREAM_NO_ERROR; }
bool operator!() const { return !IsOk(); }
// reset the stream state
wxCountingOutputStream();
wxFileOffset GetLength() const;
- bool Ok() const { return true; }
+ bool Ok() const { return IsOk(); }
+ bool IsOk() const { return true; }
protected:
virtual size_t OnSysWrite(const void *buffer, size_t size);