]>
Commit | Line | Data |
---|---|---|
1 | ---------------------------- | |
2 | wxWindows 2.5/2.6 Change Log | |
3 | ---------------------------- | |
4 | ||
5 | INCOMPATIBLE CHANGES SINCE 2.4.x | |
6 | ================================ | |
7 | ||
8 | - no initialization/cleanup can be done in wxApp/~wxApp because they are | |
9 | now called much earlier/later than before; please move any exiting code | |
10 | from there to wxApp::OnInit()/OnExit() | |
11 | - wxFileType::GetIcon() returns wxIconLocation, not wxIcon | |
12 | ||
13 | ||
14 | DEPRECATED METHODS SINCE 2.4.x | |
15 | ============================== | |
16 | ||
17 | Deprecated methods may still be used but will disappear in future wxWindows | |
18 | versions, please update your code to not use them. | |
19 | ||
20 | - wxDocManager::GetNoHistoryFiles() renamed to GetHistoryFilesCount() | |
21 | - wxSizer::Remove(wxWindow *), use Detach() instead [it is more clear] | |
22 | - wxSizer::Set/GetOption(): use Set/GetProportion() instead | |
23 | - wxKeyEvent::KeyCode(): use GetKeyCode instead | |
24 | - wxList::Number, First, Last, Nth: use GetCount, GetFirst/Last, Item instead | |
25 | - wxNode::Next, Previous, Data: use GetNext, GetPrevious, GetData instead | |
26 | - wxListBase::operator wxList&(): use typesafe lists instead | |
27 | - wxTheFontMapper: use wxFontMapper::Get() instead | |
28 | - wxStringHashTable: use wxHashMap instead | |
29 | - wxHashTableLong: use wxHashMap instead | |
30 | - wxArrayString::GetStringArray: no replacement | |
31 | - wxArrayString::Remove(index, count): use RemoveAt instead | |
32 | - wxTreeItemId conversion to long is deprecated and shouldn't be used | |
33 | - [MSW only] wxWindow::GetUseCtl3D(), GetTransparentBackground() and | |
34 | SetTransparent() as well as wxNO_3D and wxUSER_COLOURS styles | |
35 | ||
36 | ||
37 | OTHER CHANGES | |
38 | ============= | |
39 | ||
40 | 2.5.0 | |
41 | ----- | |
42 | ||
43 | All: | |
44 | ||
45 | - added wxDateSpan::operator==() and !=() (Lukasz Michalski) | |
46 | - added wxFileName::GetForbiddenChars() (Dimitri Schoolwerth) | |
47 | - use true/false throughout the library instead of TRUE/FALSE | |
48 | - wxStopWatch::Start() resumes the stop watch if paused, as per the docs | |
49 | - added wxDirTraverser::OnOpenError() to customize the error handling | |
50 | - added wxArray::SetCount() | |
51 | - wxFile, wxFFile, wxTextFile and wxTempFile now all use UTF-8 encoding | |
52 | by default in Unicode mode | |
53 | - bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed | |
54 | - added wx/math.h (John Labenski) | |
55 | - added Catalan translations (Pau Bosch i Crespo) | |
56 | - added Ukrainian translations (Eugene Manko) | |
57 | - fixed bug with deleting entries at root level in wxFileConfig | |
58 | - chkconf.h now includes platform-specific versions (for MSW | |
59 | and Mac) which contain some tests that were in setup.h | |
60 | - added event sink argument to wxEvtHandler::Connect() | |
61 | - added support for POST method and alt ports to wxHTTP (Roger Chickering) | |
62 | - added wxSocket::IPAddress() (Chris Mellon) | |
63 | - wxDataStreams can read/write many elements at once (Mickael Gilabert) | |
64 | - added wxThreadHelper class (Daniel Howard) | |
65 | ||
66 | wxBase: | |
67 | ||
68 | - added Watcom makefiles | |
69 |