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-12 12:38 VZ, revision 62380

Exclude message catalogs from UTF-8 check. Many existing message catalogs don't use UTF-8 so don't check them in svn pre-commit hook.

2009-10-12 08:50 JJ, revision 62378

add more samples to the compile cascade for OpenVMS

2009-10-11 17:30 JMS, revision 62374

Have page-specific splitter setup flags in order to fix bug that caused splitter change in one page to affect others. Also fixed a regression in splitter auto-centering.

2009-10-11 10:45 JMS, revision 62372

Code cleanup and clarification

2009-10-11 10:35 JMS, revision 62371

Fixed post-expand/collapse rendering

2009-10-11 10:32 JMS, revision 62370

Fixed wxPropertyGrid empty space rendering

2009-10-10 21:07 VZ, revision 62363

Don't document WarpPointer() as not implemented under Mac because it is. Still recommend to avoid using it though. Closes #11307.

2009-10-10 20:28 VZ, revision 62361

Compilation fix for STL build. Don't rely on implicit conversion of wxString to char* in wxStandardPaths::GetDataDir() added in r62337.

2009-10-10 20:28 VZ, revision 62360

Don't use vendor name by default in wxStandardPaths. The changes in r50025 made the behaviour of wxStandardPaths silently incompatible with the previous versions under MSW and OS X as it now used the vendor name in the paths it returned, unlike before. The benefits of doing this don't justify silently breaking the existing programs so revert this change and continue to use the application name only by default. It is, of course, still possible to explicitly ask for the vendor name to be used with wxStandardPaths::UseAppInfo().

2009-10-10 13:02 JS, revision 62359

Set the initial size

2009-10-10 11:52 JMS, revision 62358

Removed intermediate wxPanel from wxPropertyGrid.

2009-10-09 19:39 PC, revision 62356

replace TRUE/FALSE with true/false

2009-10-09 19:34 SC, revision 62355

adding defaults as wxDC did

2009-10-09 19:02 SC, revision 62354

avoiding deprecated methods in wx code, avoiding for iphone builds

2009-10-09 15:05 VZ, revision 62353

Define __WXOSX__ and __WXMAC__ on compiler command line. Although __WXMAC__ and __WXMAC__ were already defined in wx/platform.h if __WXOSX_XXX__ was defined, they couldn't be used for checks done before including this header, which was surprising and, in case of __WXMAC__, backwards incompatible. Define them now on the compiler command line to ensure that they are always defined.

2009-10-09 15:05 VZ, revision 62352

Compilation fix for PCH-less compilation. To use wxTheApp (added in r62337) we need to include wx/app.h.

2009-10-09 15:05 VZ, revision 62351

Append default extension before showing file save dialog, not after. Appending the extension after the dialog was hidden is a bad idea as it misleads the user by using a different file name from the one shown in the dialog. It is also dangerous as it bypassed wxFD_OVERWRITE_PROMPT check. So just append the default extension to the initial file name if it doesn't have any but don't modify the file name once it was accepted by user. Closes #11256.

2009-10-09 15:05 VZ, revision 62350

Don't add default extension in wxDocument::SaveAs(). wxFileSelector() takes care of the default extension itself and if it returned a file name without one, it means that the user really wants to create a file without an extension. Adding the default extension here is at best useless and at worst actively dangerous because it may silently overwrite an existing file (although this bug is due to a different problem, see #11256 for a scenario in which this can happen).

2009-10-09 15:04 VZ, revision 62349

Removed wxFont::Set/GetNoAntiAliasing() implementations. Most of them were dummy and didn't do anything and this API was never meant to be used anyhow. Keep just the declarations in wxFontBase but mark them as deprecated.

2009-10-09 15:04 VZ, revision 62348

Mention log components in wxLogTrace() documentation. Using different log components for different logging statements provides a better (because more general and efficient) way to do the same thing that wxLogTrace() does, so mention them when describing wxLogTrace().

2009-10-09 14:24 SC, revision 62347

moving bitmapbutton functionality up to button for OSX

2009-10-09 09:26 JS, revision 62345

Revert a workaround for Windows native border side-effect since latter is now fixed and former causes a positioning problem when the scrollbar is not at the home position and the grid is resized.

2009-10-09 08:43 SC, revision 62344
  • D /wxWidgets/trunk/src/osx/carbon/treectrl.cpp

removing unneeded file

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

No real changes, just fix a syntax error in unused file. Closes #11289.

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

Fix mismatched new/free in generic Region code. Closes #11287.