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