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.
This commit is contained in:
Dimitri Schoolwerth
2015-06-24 17:31:04 +04:00
committed by Tobias Taschner
parent 1e78bf639e
commit 066f540f51

View File

@@ -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: