]> git.saurik.com Git - wxWidgets.git/blame - docs/changes.txt
Platform and compiler-specific checking for MSW and Mac now done
[wxWidgets.git] / docs / changes.txt
CommitLineData
d643b80e
VZ
1----------------------------
2wxWindows 2.5/2.6 Change Log
3----------------------------
4
5INCOMPATIBLE CHANGES SINCE 2.4.x
6================================
7
09c6a817
VZ
8
9DEPRECATED METHOD SINCE 2.4.x
10=============================
11
12Deprecated methods may still be used but will disappear in future wxWindows
13versions, please update your code to not use them.
14
7af6b69e 15- wxDocManager::GetNoHistoryFiles() renamed to GetHistoryFilesCount()
09c6a817
VZ
16- wxSizer::Remove(wxWindow *), use Detach() instead [it is more clear]
17- wxSizer::Set/GetOption(): use Set/GetProportion() instead
18- wxKeyEvent::KeyCode(): use GetKeyCode instead
19- wxList::Number, First, Last, Nth: use GetCount, GetFirst/Last, Item instead
20- wxNode::Next, Previous, Data: use GetNext, GetPrevious, GetData instead
21- wxListBase::operator wxList&(): use typesafe lists instead
22- wxTheFontMapper, use wxFontMapper::Get() instead
23
7af6b69e 24
d643b80e
VZ
25OTHER CHANGES
26=============
27
282.5.0
29-----
30
93401be9
VZ
31All:
32
5553c7cf
VZ
33- added wxDateSpan::operator==() and !=() (Lukasz Michalski)
34- use true/false throughout the library instead of TRUE/FALSE
35- wxStopWatch::Start() resumes the stop watch if paused, as per the docs
350777b6 36- added wxDirTraverser::OnOpenError() to customize the error handling
5d76f462 37- added wxArray::SetCount()
9ef896e1
VS
38- wxFile, wxFFile, wxTextFile and wxTempFile now all use UTF-8 encoding
39 by default in Unicode mode
3cdf1761 40- bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
a02afd14 41- added wx/math.h (John Labenski)
f0fe27a0 42- added Catalan translations (Pau Bosch i Crespo)
a364b957 43- added Ukrainian translations (Eugene Manko)
3362e80e 44- fixed bug with deleting entries at root level in wxFileConfig
01ebf752
JS
45- chkconf.h now includes platform-specific versions (for MSW
46 and Mac) which contain some tests that were in setup.h
5553c7cf 47
d1be6261
VZ
48wxBase:
49
50- added Watcom makefiles
4365da58 51