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

2009-10-09 00:38 VZ, revision 62338

Also support fonts in wxTextCtrl::GetStyle() in wxGTK. This extends the change of r62262 with support for the fonts. Closes #11281.

2009-10-09 00:38 VZ, revision 62337

Add a WX_APPNAME_DATA_DIR hack for wxStandardPaths::GetDataDir(). Applications using wxStandardPaths::GetDataDir() to find their files under Unix can't be ran without being installed as they look for their data files under $prefix/share/appname. Make it possible to override this location by setting WX_APPNAME_DATA_DIR environment variable to allow running them without installation. Notice that this shouldn't present any security risk unless the application is SUID (which would be a very bad idea anyhow).

2009-10-09 00:37 VZ, revision 62336

Improvements to application info documentation in wxStandardPaths. Use "appinfo" instead of "appname" in the examples to make it clear that it may be different from just the application name. Also make UseAppInfo() documentation more clear. See #11275.

2009-10-08 20:38 SC, revision 62335

implementing rollover and pressed image for bitmapbutton on osx_cocoa

2009-10-08 17:33 JMS, revision 62334

Fixed regression: in wxPropertyGrid::PerformValidation(), wxPGProperty::ValidateValue() was only called when value was variant list, which was exactly the opposite condition under which the function was supposed to be called (fixes #11299).

2009-10-08 15:56 VZ, revision 62333

Don't access possibly deleted wxTimer in GTK callback. The timer object could be deleted from its Notify(), so don't access it any more after calling it. Just remember whether it was a one shot timer or not and reuse this value for the return value of the callback. Closes #11295.

2009-10-08 15:52 VZ, revision 62332

Fix new[]/delete mismatch in HelpGen. Closes #11290.

2009-10-08 12:59 JJ, revision 62330

OpenVMS : add compile support for debugrpt sample

2009-10-08 08:54 SC, revision 62329

fixing typo

2009-10-08 07:03 PC, revision 62328

remove requested button rather than last one, return true from successful Create(), and a non-pch build fix

2009-10-08 06:07 KO, revision 62327

Make sure all Bakefile formats that use CRLF line feeds are set to use CRLF in SVN.

2009-10-07 17:12 VZ, revision 62325

Compilation fix for PCH-less in wxInfoBar. wx/dcmemory.h include is needed at least for OS X build.

2009-10-07 15:54 VZ, revision 62324

Updated for bakefile 0.2.7. Copied bakefile.m4 from bakefile svn and regenerated configure using it. This should have been done in r62308 but was forgotten. Notice that we can't use bakefile 0.2.6 any more without reverting this change!

2009-10-07 12:50 VZ, revision 62323

Honour COMPILER_PREFIX in wx presets too. If a non-default COMPILER_PREFIX was specified when building wxWidgets, we should also be able to use the same prefix when building applications using this build, so use COMPILER_PREFIX instead of just COMPILER in the project/ makefiles generated using wx presets.

2009-10-07 07:53 SC, revision 62321

fixing gdiplus implementation, see #11282

2009-10-07 00:03 JJ, revision 62318

adding dataview sample to OpenVMS make cascade

2009-10-06 16:47 JJ, revision 62316

OpenVMS compile support : adding more samples for wxGTK

2009-10-06 16:18 VZ, revision 62315

Compilation fix for VC6 in wxInfoBarGeneric code. VC6 apparently can't compare const pointer to derived class with a non-const pointer to the base class.

2009-10-06 10:53 JJ, revision 62314

Update setup for OpenVMS

2009-10-06 08:58 JJ, revision 62313

Adding regex support for wxMOTIF for OpenVMS

2009-10-06 07:18 SC, revision 62312

use better background color

2009-10-06 05:42 PC, revision 62311

non-PCH build fix

2009-10-06 02:08 VZ, revision 62310

Create an NSAutoreleasePool in wxMacWakeUp(). An auto-release pool is needed in this function because it can be called from another thread which has no reason to have a pre-existing pool, but it does allocate NSEvent object which is auto-released, resulting in warnings if no pool available.

2009-10-06 02:08 VZ, revision 62309

Ensure that an event loop exists in ShowViewOrWindowWithEffect(). We may not have an event loop yet if wxWindow::ShowWithEffect() is called during the application startup, create a temporary event loop instead of crashing in this case.

2009-10-06 00:58 VZ, revision 62308

Rebake using pre-release version of bakefile 0.2.7. They should fix the problem with monolithic build of wx (see #11231). Notice that trivial changes to VC9 project files are not being committed so the makefiles are currently not quite consistent but it shouldn't matter as they will be all regenerated soon when bakefile 0.2.7 is really released.