From wxWidget 3.0 documentation for wxLog
http://docs.wxwidgets.org/3.0/classwx_log.html, it seems that the wxLog
class no longer has a OnLog()
member, which was in wxWidgets 2.8 (http://docs.wxwidgets.org/2.8/wx_wxlog.html#wxlogonlog). The 3.0 documentation mentions OnLog()
once, but there is really no entry for it.
There is a similar issue for wxLog::DoLog()
I was wondering what happened to these functions. I have third party legacy code that still use these two functions. How should I migrate the legacy code with wxLog::OnLog()/DoLog()
?
Thanks,