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-04-19 20:54 FM, revision 64053

minor additions and clarifications

2010-04-19 16:44 SC, revision 64052

re-adding script that is needed for xcode builds

2010-04-19 16:33 JMS, revision 64051

or -> || (how did that compile on GCC anyway?)

2010-04-19 16:25 JMS, revision 64050

When deciding whether to convert wxAny to 'long' or 'longlong' wxVariant, use wxINT32_MAX instead of LONG_MAX (for more consistent results across builds)

2010-04-19 16:23 JMS, revision 64049

Improve wxAny<->wxVariant conversion 64-bit integer tests

2010-04-19 15:36 SC, revision 64048

missing return value

2010-04-19 14:39 JJ, revision 64047

update OpenVMS compile support

2010-04-19 00:15 VZ, revision 64041

Use "monospace" face name for all Unix systems, hopefully it should work. This fixes failures of several build bot slaves (all running Debian or Ubuntu) which were due to using "Fixed" under these Linux distributions. Unfortunately "Fixed" didn't work as Pango doesn't seem to recognize it as a valid face name. "DejaVu Sans" should probably work on most current Linux systems but "Monospace" should hopefully be available on other Unix systems as well. We could also just take whatever wxFontEnumerator returns which should probably be even more fool-proof.

2010-04-18 20:49 SC, revision 64040

render characters on OSX one by one as fractional widths leads to errors otherwise

2010-04-18 20:38 SC, revision 64039

concatenation must use prepend mode on osx as well

2010-04-18 19:19 PMO, revision 64035

Make the output of wxMissingImplementation more assert like

2010-04-18 19:19 MW, revision 64034

Try to provide backtraces on unix buildbots if the test program crashes.

2010-04-18 19:18 PMO, revision 64033

Check for empty menu title

2010-04-18 18:27 MW, revision 64032

Add stub -t and -d options to the test program on the stable branch for forward compatibilty with the trunk.

2010-04-18 18:18 JMS, revision 64031

Use const_cast<> to get 'wxAnyValueType*' from 'const wxAnyValueType*'

2010-04-18 17:46 PMO, revision 64030

First parts of the menu implementations

2010-04-18 15:29 SC, revision 64029

fixing coordinate conversions for captured windows

2010-04-18 15:18 SC, revision 64028

using same API

2010-04-18 15:17 SC, revision 64027

streamlining code for extra controls

2010-04-18 15:15 SC, revision 64026

painting background of splitter as well, fixes #11958

2010-04-18 13:54 JMS, revision 64025

Fix STL build

2010-04-18 13:15 JMS, revision 64022

Fix wxAny for VC6 by removing 'wxAny& operator=(const wxVariant &variant)' for it. This will break some cases of implicit wxVariant->wxAny conversion (for VC6).

2010-04-18 12:19 JMS, revision 64021

Correctly use wxANY_AS() instead of wxAny::As<>(), for VC6 compatibility

2010-04-18 11:49 SC, revision 64020

normal windows also have transparent corners, so don't ever set it to non transparent ...

2010-04-18 02:05 VZ, revision 64019

Fix bug with using uninitialized flags in GetParentForModalDialog(). GetParentForModalDialog() was called from the ctor initialized list before m_windowStyle could be initialized by the base class ctor in several different places, meaning that the check for wxDIALOG_NO_PARENT in this function was using uninitialized variable. Fix this by passing the style parameter explicitly to this function to allow using it from derived class ctors. Still keep an overload which uses the actual window parent and flags which is simpler to use for later calls to this function. Thanks valgrind for finding this one.