]>
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 | |
7e05b755 | 10 | - Fixed new charset detection code |
bc00e715 | 11 | - ODBC Informix fixes (submitted by Roger Gammans) |
cb35465e | 12 | - Added ODBC date support to wxVariant |
bc00e715 | 13 | - Added wxDir::Traverse |
7e05b755 | 14 | - Added wxSingleInstanceChecker class |
cb35465e JS |
15 | - Removed redundant wxDebugContext functions using C++ streams, |
16 | so now standard stream usage should be unnecessary | |
bc00e715 | 17 | |
014e19de RD |
18 | All (GUI): |
19 | ||
7e05b755 | 20 | - Added wxDbGrid class for displaying ODBC tables |
014e19de RD |
21 | - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the |
22 | user code can get access to the edit control when it is created, (to | |
bc00e715 | 23 | push on a custom event handler for example) |
014e19de | 24 | - Added wxTextAttr class and SetStyle, SetDefaultStyle and |
bc00e715 JS |
25 | GetDefaultStyle methods to wxTextCtrl |
26 | - Added wxSingleInstanceChecker | |
27 | - Improvements to Tex2RTF | |
28 | - Added Paul and Roger Gammans' grid controls | |
29 | - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not | |
30 | first-time saved | |
31 | - Fixed memory leak in textcmn.cpp | |
32 | - Various wxXML enhancements | |
33 | - Removed wxCLIP_CHILDREN style from wxSplitterWindow | |
34 | - Fixed memory leak in DoPrint, htmprint.cpp | |
35 | - Fixed calendar sample bug with using wxCommandEvent::GetInt() | |
36 | instead of GetId() | |
93a21d88 | 37 | - Added wxDbGrid combining wxODBC classes with wxGrid |
cb35465e | 38 | - Added more makefiles and project files for contrib hierarchy |
014e19de | 39 | |
bc00e715 JS |
40 | wxMSW: |
41 | ||
42 | - Fixed wxApp::ProcessMessage so controls don't lose their | |
43 | accelerators when the accelerators are redefined elsewhere | |
44 | - Accelerators consisting of simple keystrokes (without control, | |
cb35465e | 45 | alt or shift) now work |
bc00e715 JS |
46 | - Compile fixes for Watcom C++ added |
47 | - Compile fixes for Cygwin 1.0 added | |
d014b867 | 48 | - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop() |
bc00e715 | 49 | - Replaced wxYield() call in PopupMenu() by a much safer |
d014b867 | 50 | wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones |
bc00e715 JS |
51 | - Enter processing in wxSpinCtrl fixed |
52 | - Fixed bug in determining the best listbox size | |
53 | - Fix for wxFrame's last focus bug | |
54 | - We now send iconize events | |
55 | - Fixed wxFrame::SetClientSize() with toolbar bug | |
56 | - Added mousewheel processing | |
cb35465e JS |
57 | - Added wxSystemSettings::Get/SetOption so we can configure |
58 | wxWindows at run time; used this to implement no-maskblt option | |
59 | in wxDC | |
60 | - Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI | |
61 | child frame styles are honoured | |
014e19de | 62 | |
bc00e715 | 63 | wxGTK: |
014e19de | 64 | |
bc00e715 | 65 | - Fixed slider rounding bug |
d014b867 | 66 | - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding() |
bc00e715 JS |
67 | - We now send iconize events |
68 | - Fix for discrepancies between wxNotebookEvent and wxNotebook | |
69 | GetSelection() results | |
014e19de | 70 | |
32f31043 VZ |
71 | 2.3.0 |
72 | ----- | |
73 | ||
76e23cdb VZ |
74 | wxBase: |
75 | ||
f92f546c VS |
76 | - fixed problem with wxURL when using static version of the library |
77 | - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories | |
35332784 | 78 | - wxMimeTypesManager now can create file associations too (Chris Elliott) |
32f31043 | 79 | - wxCopyFile() respects the file permissions (Roland Scholz) |
b92fd37c | 80 |