]>
Commit | Line | Data |
---|---|---|
8870c26e JS |
1 | wxWindows 2 Change Log |
2 | ---------------------- | |
e3a43801 | 3 | |
014e19de RD |
4 | 2.3.1 |
5 | ----- | |
6 | ||
bc00e715 JS |
7 | wxBase: |
8 | ||
9 | - Fixes for gcc 3.0 | |
10 | - Fixed new charset detection code (langinfo.h not included in intl.cpp; | |
11 | langinfo.h not neccessary in strconv.cpp) | |
12 | - ODBC Informix fixes (submitted by Roger Gammans) | |
264b3fc8 | 13 | - Added wxDbGrid class for displaying ODBC tables |
bc00e715 JS |
14 | - Added wxDir::Traverse |
15 | ||
014e19de RD |
16 | All (GUI): |
17 | ||
18 | - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the | |
19 | user code can get access to the edit control when it is created, (to | |
bc00e715 | 20 | push on a custom event handler for example) |
014e19de | 21 | - Added wxTextAttr class and SetStyle, SetDefaultStyle and |
bc00e715 JS |
22 | GetDefaultStyle methods to wxTextCtrl |
23 | - Added wxSingleInstanceChecker | |
24 | - Improvements to Tex2RTF | |
25 | - Added Paul and Roger Gammans' grid controls | |
26 | - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not | |
27 | first-time saved | |
28 | - Fixed memory leak in textcmn.cpp | |
29 | - Various wxXML enhancements | |
30 | - Removed wxCLIP_CHILDREN style from wxSplitterWindow | |
31 | - Fixed memory leak in DoPrint, htmprint.cpp | |
32 | - Fixed calendar sample bug with using wxCommandEvent::GetInt() | |
33 | instead of GetId() | |
93a21d88 | 34 | - Added wxDbGrid combining wxODBC classes with wxGrid |
014e19de | 35 | |
bc00e715 JS |
36 | wxMSW: |
37 | ||
38 | - Fixed wxApp::ProcessMessage so controls don't lose their | |
39 | accelerators when the accelerators are redefined elsewhere | |
40 | - Accelerators consisting of simple keystrokes (without control, | |
41 | alt or shift) are now possible | |
42 | - Compile fixes for Watcom C++ added | |
43 | - Compile fixes for Cygwin 1.0 added | |
d014b867 | 44 | - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop() |
bc00e715 | 45 | - Replaced wxYield() call in PopupMenu() by a much safer |
d014b867 | 46 | wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones |
bc00e715 JS |
47 | - Enter processing in wxSpinCtrl fixed |
48 | - Fixed bug in determining the best listbox size | |
49 | - Fix for wxFrame's last focus bug | |
50 | - We now send iconize events | |
51 | - Fixed wxFrame::SetClientSize() with toolbar bug | |
52 | - Added mousewheel processing | |
014e19de | 53 | |
bc00e715 | 54 | wxGTK: |
014e19de | 55 | |
bc00e715 | 56 | - Fixed slider rounding bug |
d014b867 | 57 | - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding() |
bc00e715 JS |
58 | - We now send iconize events |
59 | - Fix for discrepancies between wxNotebookEvent and wxNotebook | |
60 | GetSelection() results | |
014e19de | 61 | |
32f31043 VZ |
62 | 2.3.0 |
63 | ----- | |
64 | ||
76e23cdb VZ |
65 | wxBase: |
66 | ||
f92f546c VS |
67 | - fixed problem with wxURL when using static version of the library |
68 | - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories | |
35332784 | 69 | - wxMimeTypesManager now can create file associations too (Chris Elliott) |
32f31043 | 70 | - wxCopyFile() respects the file permissions (Roland Scholz) |
b92fd37c | 71 |