Changelogs

Overview

These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2016-05-09 08:38:04

Changes per page:

25 50 100 250 500 1000 2000

Changelog for wxWidgets (70435 changes):

2002-09-01 17:35 GD, revision 16915

corrected warnings

2002-09-01 17:11 VS, revision 16914

fixes to newly added i18n code in XRC - don't use it if wxXRC_USE_LOCALE isn't used

2002-09-01 17:02 JS, revision 16913

Removed warnings from ipcbase.cpp Removed extra wxYields from progress dialog Yield on wxX11 yields twice

2002-09-01 16:34 SN, revision 16912

Clear attribute cache in Redimension to fix Bug 508407.

2002-09-01 15:59 JS, revision 16911

Applied patch [ 603104 ] wxX11 wxClientDC, wxPaintDC fix This patch changes a pre-compile check to a run-time check. The fix is that for windows that only using 1 X window (like wxFrame) the client area needs to be adjusted... FL is one of the things that needs this patch to work ok under wxX11. Hans Van Leemputten

2002-09-01 15:48 JS, revision 16910

Clean up string table before uninitializing DDEML to cure crash on exit in memory-debug mode

2002-09-01 15:27 SN, revision 16909

Added some const qualifiers. "Fixed" bug no 500487 by limiting wxGrid::DoGetBestSize's return value by DisplaySize.

2002-09-01 15:08 JS, revision 16908

Accidentally omitted code from previous patch

2002-09-01 14:48 JS, revision 16907

Applied patch [ 600051 ] DDE and TCP improvements and fixes By Michael Fielding As discussed on wx-dev. some fixes and improvements for Interprocess Communication (IPC), using DDE and TCP. 1. DDE buffers were using a global buffer 2. TCP buffers were allocated each time needed, and Request would have caused memory leaks had it been used. Fixed these both by using a self-resizing buffer in wxConnectionBase. Changed samples and docs to reflect the improved (but backward compatible) internal buffer management. wxConnectionBase could (in future) use wxMemoryBuffer. 3. IPC sample had trouble closing, causing crash, when closing server using window X button. Because it was (effectively) trying to delete a window in OnExit, when that window was already destroyed. Fixed by making IPCDialog and MyConnection remember if they'd destroyed each other. It's not elegant, but either the connection or the window could be deleted first. 4. Docs for wxDDE... and wxTCP... duplicated eachother, supposed to have same API. Some parts unclear. Patch removes dde and tcp-specific files (including from tipc.tex and classes.tex), and explains how ipc.h selects for you which one to use based on platform. Some other misc clarifications. 6. Client sample was suffering apparent memory leak because of not deleting connection object, and had a hack in there to do that. In fact this was due to the derived OnDisconnect not deleting itself, as it does in base class. Mentioned need to do it in docs, fixed sample so that it does.

2002-09-01 11:41 VS, revision 16906

fixed a small typo

2002-09-01 03:16 RL, revision 16905

removed DoInit() straggler from appbase mods. #include log.h and so, wxbase builds again.

2002-09-01 00:54 SN, revision 16904

Applied AutoWrap Renderer Bugfix by Roger Gammans (Patch 467479). Blindly tried to fix crash reported by Roman Vanicek on Mailing list: SetCellHighlightColour sometimes segfaults in wxGTK. The application crashes in LookupAttr. Tentative explanation: Cache handling gets confused if LookupAttr gets called on wxGridNoCell.

2002-08-31 23:43 VZ, revision 16903

implemented a dirty hack allowing us to keep activation after wxExecute(wxEXEC_SYNC) call

2002-08-31 23:25 VZ, revision 16902

don't disable top level windows recursively

2002-08-31 23:19 VS, revision 16901

fixed font picker in wxHtmlHelpController, better UI is now used

2002-08-31 23:08 VZ, revision 16900

fix for losing focus under Windows after showing the progress dialog

2002-08-31 22:57 VZ, revision 16899

compilation fix

2002-08-31 22:52 VZ, revision 16898

SetSelection() for generic wxSpinCtrl (forgot to commit before)

2002-08-31 22:42 SN, revision 16897

Make use of new array functions. Added redraw function (by Roger Gammans). Added Cell overflow & multiple cells (Patch 518206).

2002-08-31 22:36 GD, revision 16896

use include "..." instead of <...>

2002-08-31 22:31 GD, revision 16895

disable use of #pragma interface under Mac OS X GNU compiler included with Mac OS X 10.2 (Jaguar) as well as August Developer Tools update contain a bug concerning #pragma interface handling that can only be worked around by not using them (and they are not necessary anyways)

2002-08-31 20:06 RL, revision 16894

symbols.txt is no longer.

2002-08-31 19:00 JS, revision 16893

Forgot to add wxX11 FAQ

2002-08-31 16:27 JS, revision 16892

Some doc fixes

2002-08-31 15:37 VS, revision 16891

- applied patch that adds more i18n support to XRC handlers - added ; to ends of lines in gettext output - needed for older gettext tools?