X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d3fc1755150fd63134568285f2433544fa51af53..72e4e6a397fd04e6d8e0cc5ae22aaba740c3c8bc:/include/wx/log.h diff --git a/include/wx/log.h b/include/wx/log.h index 4f23682b55..b1309ce30a 100644 --- a/include/wx/log.h +++ b/include/wx/log.h @@ -288,6 +288,8 @@ private: // "trivial" derivations of wxLog // ---------------------------------------------------------------------------- +#if wxABI_VERSION > 20601 + // log everything to a buffer class WXDLLIMPEXP_BASE wxLogBuffer : public wxLog { @@ -302,6 +304,7 @@ public: virtual void Flush(); protected: + virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t); virtual void DoLogString(const wxChar *szString, time_t t); private: @@ -310,6 +313,8 @@ private: DECLARE_NO_COPY_CLASS(wxLogBuffer) }; +#endif // wxABI_VERSION + // log everything to a "FILE *", stderr by default class WXDLLIMPEXP_BASE wxLogStderr : public wxLog {