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-04 13:22 VZ, revision 63063

Make calling wxLog::IsAllowedTraceMask() safe during static init time. Although using wxLog during statics initialization is not recommended, it may still happen, possibly indirectly so make it work correctly by using an accessor function for the array of trace masks which ensures that this array is always correctly initialized before being used. Closes #11592.

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

Compilation fix for VC6 after r63061. VC6 doesn't support empty struct initializers apparently.

2010-01-04 12:05 VZ, revision 63061

Correctly parse times without seconds in wxDateTime::ParseTime(). This was always supposed to work but never did because of a typo in the "24 hour format without seconds" format specification. Fix this by removing the extra "%S" from it and add a test for this case.

2010-01-04 11:59 VZ, revision 63060

Don't dereference invalid iterator in wxDateTime::ParseDate(). If the string passed to this method contained only spaces (possibly 0 of them, i.e. was empty) we would dereference the end string iterator. Fix this by adding an explicit test for "p != pEnd".

2010-01-04 11:08 SC, revision 63059

fixing include type

2010-01-04 08:53 SC, revision 63057

adding stc support

2010-01-04 08:52 SC, revision 63056

adding kqueue define for xcode builds

2010-01-04 08:50 SC, revision 63055

fixing include types

2010-01-04 02:57 KO, revision 63053

Get the OS X Cocoa native combobox building by having the native code compile if wxOSX_USE_NATIVE_COMBOBOX is defined. It must be explicitly enabled by adding that define to the build flags as the native implementation is mostly just stubs right now.

2010-01-04 01:45 KO, revision 63052

Rebake from clean wx tree.

2010-01-04 00:59 KO, revision 63051

Don't use a destroy event handler to disconnect the native control's delegate as the destroy event propagates and can cause the TLW to remove its delegate at unexpected times, such as when a child control is destroyed but the TLW remains active. Instead, do it in response to the Destroy() call.

2010-01-03 23:52 KO, revision 63050

Create a text measuring context until a real context is assigned, this allows things like text measurement code using wxMemoryDC to work on Mac.

2010-01-03 20:58 SC, revision 63049

correcting error message

2010-01-03 19:55 SC, revision 63048

fixing name collision ocuring in a specific script runner

2010-01-03 19:29 VS, revision 63045

Removed some outdated compiler checks in OLE code. We don't support VC++ 4 for ages and any recent version of GCC has cVal, too.

2010-01-03 19:29 VS, revision 63044

Removed wxClearVariant() and wxReleaseVariant(). Replaced them with standard VariantInit() and VariantClear() functions respectively. They appear to be just reimplementations of these.

2010-01-03 19:28 VS, revision 63043

Moved wxConvertVariantToOle and wxConvertOleToVariant to oleutils.cpp. These are declared in oleutils.h, so that's where they should be. More importantly, they are used by wxActiveXContainer and so are required even if wxUSE_OLE_AUTOMATION is off. Also added "wx" prefix to (Clear|Release)Variant, because they cannot be static any longer.

2010-01-03 19:20 SC, revision 63042

building xcode projects from files.bkl

2010-01-03 18:37 VZ, revision 63041

Romanian translation update from Catalin. This is more of a replacement than an update but apparently the old translation had a lot of problems. The new translation is undoubtedly more complete (1523 translated messages against 230 for the old one).

2010-01-03 11:24 JMS, revision 63040

Added missing ResetEditorAppearance() call

2010-01-03 11:23 JMS, revision 63039

In wxPGEditor::SetControlAppearance() use GetClassDefaultAttributes() instead of GetDefaultAttributes()

2010-01-02 14:07 VS, revision 63038

Added wxAutoOleInterface<T> template. This replaces WX_DECLARE_AUTOOLE with easier-to-debug version. The macro is still preserved for backward compatibility.

2010-01-02 12:31 MBN, revision 63037

Document wxPerl interface differences for wxRichTextCtrl.

2010-01-02 12:29 MBN, revision 63036

Document wxPerl interface differences for wxRichTextCtrl.

2010-01-02 12:22 MBN, revision 63035

Build with WXINTL_NO_GETTEXT_MACRO defined.