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

2010-01-08 19:20 KO, revision 63100

Rebake.

2010-01-08 19:19 PC, revision 63099

for file load/save, always try wxImage first, fallback to pixbuf

2010-01-08 05:33 PC, revision 63098

fix broken #elif

2010-01-08 05:05 PC, revision 63097

fix broken #elif

2010-01-08 02:29 KO, revision 63096

Support mouse click through as otherwise clicking inside an inactive window causes us to lose the first mouse down, unlike with MSW.

2010-01-07 20:43 JMS, revision 63095

Improved documentation for wxPGProperty::DoSetAttribute()

2010-01-07 20:37 JMS, revision 63094

Fixed deprecation message (brings include file in line with the the interface)

2010-01-07 20:35 JMS, revision 63093

Do not use deprecated property attribute wxPG_ATTR_INLINE_HELP (fixes #11605)

2010-01-07 20:31 JMS, revision 63092

Fixed a deprecation message

2010-01-07 19:30 PC, revision 63091

remove unused function GetGdkVisual()

2010-01-07 19:16 PC, revision 63090

defer creating bitmap representation until it is needed

2010-01-07 14:16 VZ, revision 63089

Improve hit detection in wxMSW wxTreeCtrl with wxTR_FULL_ROW_HIGHLIGHT style. When wxTR_FULL_ROW_HIGHLIGHT is used, the item visually takes up the entire breadth of the window so clicking both to the left or to the right of the item should have the same effect as clicking on it. So add a MSWIsOnItem() helper which tests for whether a point is above the item correctly and use it in order to: 1. In multi selection mode, allow clicking anywhere to select the item(s) when Ctrl or Shift is pressed (Closes #11598). 2. Generate activation event when clicking to the right of the item too (Closes #11602). 3. Detect item bounds correctly in WM_LBUTTONUP handler (although it's not really clear what does this code do and hence what problem does this fix...).

2010-01-07 14:15 VZ, revision 63088

German translations update from Thomas Krebs. Closes #11562.

2010-01-07 14:15 VZ, revision 63087

Fix typos in IMediaPlayer2 and INSPlay interfaces declarations. Fix missing/extraneous parentheses. Closes #11600.

2010-01-06 23:02 KO, revision 63085

Forward port 2.8 fix.

2010-01-06 03:22 KO, revision 63083

Fix another line somehow missing from the wxGraphicsBitmap forward port.

2010-01-05 19:27 SC, revision 63079

added zlib directly to dynamic targets

2010-01-05 18:53 PC, revision 63078

remove never-implemented palette support

2010-01-05 17:42 JMS, revision 63077

Call virtual ctrl->GetDefaultAttributes() instead of static GetClassDefaultAttributes()

2010-01-05 14:55 SC, revision 63075

added zlib directly to dynamic targets

2010-01-05 14:54 SC, revision 63074

add zlib only in dynamic build targets

2010-01-05 13:56 VZ, revision 63072

Brazilian Portuguese translations updae from Allann Jones. Closes #11597.

2010-01-04 17:07 JMS, revision 63066

Allow wxPropertyGridInterface::EnableProperty() to work even if property->GetGrid() returns NULL.

2010-01-04 13:51 VZ, revision 63065

Add assert checking that window has no event handlers when destroyed. Forgetting to pop custom event handlers pushed onto the window before it is destroyed will result in a crash later on, so try to detect this immediately with an assert. We might want to forcefully pop them off too, this could result in memory leaks but would be still better than crashing. Closes #11533.

2010-01-04 13:22 VZ, revision 63064

Fix wxConvAuto behaviour when it is used by wxTextInputStream. wxConvAuto implicitly supposed that the chunk of data passed to it for translation was big enough to allow it to at least detect the BOM from it. However this isn't necessarily the case and never is with wxTextInputStream which reads the bytes one by one. Fix this by waiting until we have enough data to be able to detect the BOM. This still doesn't fix the problem with streams without BOM and the corresponding unit test still fails -- it will need to be fixed at the level of wxTextInputStream itself later but handling correctly the cases when a BOM is present is already better than before. See #11570.