]>
Commit | Line | Data |
---|---|---|
1 | ---------------------------- | |
2 | wxWindows 2.5/2.6 Change Log | |
3 | ---------------------------- | |
4 | ||
5 | INCOMPATIBLE CHANGES SINCE 2.4.x | |
6 | ================================ | |
7 | ||
8 | ||
9 | DEPRECATED METHOD SINCE 2.4.x | |
10 | ============================= | |
11 | ||
12 | Deprecated methods may still be used but will disappear in future wxWindows | |
13 | versions, please update your code to not use them. | |
14 | ||
15 | - wxDocManager::GetNoHistoryFiles() renamed to GetHistoryFilesCount() | |
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 | ||
24 | ||
25 | OTHER CHANGES | |
26 | ============= | |
27 | ||
28 | 2.5.0 | |
29 | ----- | |
30 | ||
31 | All: | |
32 | ||
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 | |
36 | - added wxDirTraverser::OnOpenError() to customize the error handling | |
37 | - added wxArray::SetCount() | |
38 | - wxFile, wxFFile, wxTextFile and wxTempFile now all use UTF-8 encoding | |
39 | by default in Unicode mode | |
40 | - bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed | |
41 | - added wx/math.h (John Labenski) | |
42 | - added Catalan translations (Pau Bosch i Crespo) | |
43 | - added Ukrainian translations (Eugene Manko) | |
44 | - fixed bug with deleting entries at root level in wxFileConfig | |
45 | ||
46 | wxBase: | |
47 | ||
48 | - added Watcom makefiles | |
49 |