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):

2006-04-10 13:13 ROL, revision 38653

added TreeCtrl.WindowIndex method for skipping items like MenuBar when counting window children

2006-04-10 13:04 VZ, revision 38652

use #if WXWIN_COMPATIBILITY_2_6 guard around implementation of wxNotebookSizer ctor too

2006-04-10 12:54 VZ, revision 38651

use #if WXWIN_COMPATIBILITY_2_6 guard around implementation of wxBookCtrlSizer ctor too

2006-04-10 11:45 SC, revision 38650

cleanup

2006-04-10 08:04 vell, revision 38649

cleanup - reformatting

2006-04-10 04:45 vell, revision 38648

cleanup - reformatting, pt 2

2006-04-10 03:54 vell, revision 38647

cleanup - reformatting

2006-04-10 01:39 VZ, revision 38646

use wxGTK_CONV instead of directly using wxConvLocal (simplifies code avoiding needless #ifdefs and prepares for further wxGTK_CONV changes)

2006-04-10 01:35 VZ, revision 38645

added wxWxCharBuffer which stands for buffer of wxChars

2006-04-10 01:17 VZ, revision 38644

don't generate wxEVT_CONTEXT_MENU messages for right clicks in the list control header

2006-04-10 00:52 VZ, revision 38643

fix for the previous commit: delete m_conv after calling Flush() which uses it

2006-04-09 22:47 VZ, revision 38642

really fix warning about implicitly converting 0 and 1 to size_t -- use explicit cast to size_type

2006-04-09 20:42 VZ, revision 38641

ISO8859-1 is also supported by GTK+ 2

2006-04-09 19:55 VZ, revision 38640

added more files to parse

2006-04-09 12:51 SC, revision 38639

make the string properly 0 terminated and allow for one char more on the output buffer

2006-04-09 11:00 VZ, revision 38638

very minor cleanup

2006-04-09 08:53 SC, revision 38637

in case of an faulty event this might not get initialized

2006-04-09 08:48 SC, revision 38636

conversion fix by Ryan

2006-04-09 08:37 SC, revision 38635

listbox cleanup

2006-04-09 06:50 SC, revision 38634

listbox cleanup

2006-04-09 06:42 SC, revision 38633

listbox cleanup

2006-04-09 00:15 RD, revision 38632

Added CmdDown() to grid events

2006-04-09 00:09 RD, revision 38631

Use CmdDown in mouse events instead of ControlDown so Mac users can multi-select with shift and cmd like they are used to. Other platforms are not affected.

2006-04-08 23:09 RD, revision 38630

Added missing not operator that was preventing the drawing of the gridlines

2006-04-08 22:58 VZ, revision 38629

don't redefine _CRT_SECURE_NO_DEPRECATE and _CRT_NON_CONFORMING_SWPRINTFS if already defined (patch 1463364)

2006-04-08 22:51 VZ, revision 38628

changed DoMessageFromThreadWait() to not block if there are no messages, this avoids the need for sending a dummy WM_NULL from the thread wait loop (replaces patch 1459812)

2006-04-08 21:49 RD, revision 38627

Give wx.GridTableBase a destructor, and clear the ownership when it is passed to SetTable.

2006-04-08 15:32 SC, revision 38626

ellipsis support for static text (mac), applied patch

2006-04-08 15:26 SC, revision 38625

fixing Clipboard::IsSupported when asking for unicode text and only non-unicode text is available

2006-04-08 15:19 SC, revision 38624

fixing Clipboard::IsSupported when asking for unicode text and only non-unicode text is available

2006-04-08 14:58 JS, revision 38623

Corrected FindString

2006-04-08 14:33 SC, revision 38622

changing coordinates to client-area relative (patch 1378189)

2006-04-08 13:00 SC, revision 38621

allowing the suppression of SetValue event-triggering (needed for composite controls)

2006-04-08 11:43 SC, revision 38620

applying patch 1411230

2006-04-08 09:14 vell, revision 38619

minor cleanup

2006-04-08 06:17 RD, revision 38618

First pass at integrating a code generator in XRCed. Initial patch from Eli Golovinsky, with lots of additional mods by me.

2006-04-08 05:52 SC, revision 38617

ellipsis support

2006-04-07 22:41 VZ, revision 38616

fix recently introduced memory leak of m_conv (bug 1466559)

2006-04-07 21:32 JS, revision 38615

Backported fixes in revision 1.670 to 2.6

2006-04-07 19:24 RD, revision 38614

wxNotebookSizer is gone now

2006-04-07 19:21 SC, revision 38613

applied patch 1378261

2006-04-07 18:59 SC, revision 38612

applied patch 1466370

2006-04-07 18:56 SC, revision 38611

applied patch 1465549

2006-04-07 16:51 vell, revision 38610

cleanup - added whitespace around operators, some blank lines, fixed comment typos, broke up one-line if-stmts

2006-04-07 07:12 JS, revision 38609

Added minimal Info.plist

2006-04-07 00:39 VZ, revision 38608

added html headers

2006-04-07 00:38 VZ, revision 38607

added wxTLW::ShouldPreventAppExit() which can be overridden to allow closing the application even if some windows are still opened; use it for wxHtmlHelpFrame

2006-04-06 23:45 VZ, revision 38606

some compilers warn about implicitly converting 0 and 1 to size_t -- use 0u and 1u instead

2006-04-06 17:11 VZ, revision 38605

fixed gcc warnings about not initializing the base class in copy ctor

2006-04-06 14:27 VZ, revision 38604

GetBoundingRect() is supposed to return the logical coordinates, even in !textOnly case; also documented it