From 066f540f518c4d775cc5fe3e50ce15c20dd04dee Mon Sep 17 00:00:00 2001 From: Dimitri Schoolwerth Date: Wed, 24 Jun 2015 17:31:04 +0400 Subject: [PATCH] Mention micro version changes Document the change of wxAppTraits::GetToolkitVersion which when user-overridden in the best case leads to a compile error and worst case when it already has been overridden (which is more likely) silently fails as the user-override would not be called. Also mention the micro version changes in general in changes.txt. --- docs/changes.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/changes.txt b/docs/changes.txt index af9241ee04..17af3e3bf7 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -34,6 +34,10 @@ Changes in behaviour not resulting in compilation errors - wxOSX/Carbon port doesn't exist any more, wxOSX/Cocoa will be silently used instead even if configure --with-osx_carbon option is used. +- The pure virtual function wxAppTrait::GetToolkitVersion() now has a parameter + for getting the micro version. If you override GetToolkitVersion() you need + to add this new third parameter. + Changes in behaviour which may result in build errors ----------------------------------------------------- @@ -88,6 +92,8 @@ All: - Fix wxStringTokenizer copy ctor and assignment operator. - Added wxASSERT_MSG_AT() and wxFAIL_MSG_AT() macros. - Accept replacement character in wxString::ToAscii() (Stefano D. Mtangoo). +- Add parameter to get the micro version to OS and toolkit version + functions. See wxGetOsVersion(), wxPlatformInfo, and wxAppTraits. Unix: