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

2011-10-18 23:56 VZ, revision 69460

Fix SetShape() in wxOSX/Cocoa. Explicitly erase the part of the window outside of its shape with a transparent colour to ensure that it is indeed transparent and not just has the default solid background. Closes #13340.

2011-10-18 23:56 VZ, revision 69459

Don't create a valid wxRegion when using default ctor in wxOSX. Default constructing a wxRegion created an object that unexpectedly passed IsOk() test in wxOSX. This was completely unexpected so don't do this and leave default constructed wxRegion invalid, as in the other ports. Update DoCombine() to be able to deal with the case of an invalid source region in a way consistent with the other ports.

2011-10-18 23:56 VZ, revision 69458

Don't interpret '&' specially in wxTextWrapper. wxTextWrapper is used for the multiline text for which it doesn't make sense to use mnemonics so don't interpret '&' specially in the text used with it. Doing this also allows to remove the hack used in wxDialog::CreateTextSizer() to deal with it that was used so far.

2011-10-18 23:56 VZ, revision 69457

Use wxWindow::GetClientAreaOrigin() instead of MSW functions. ::AdjustWindowRectEx() doesn't seem to work correctly for wxPopupWindow and still offsets the coordinates by the title bar height even if these windows don't have WS_CAPTION style. Rather than try to work around this, simply use wxWindow method instead of the Windows function as shape wxRegion offset.

2011-10-18 23:56 VZ, revision 69456

No changes, just fix a typo in a header comment.

2011-10-18 23:56 VZ, revision 69455

No changes, just fix typo in a comment following an #endif. The closing comment used wrong symbol.

2011-10-18 23:54 VZ, revision 69454

Correct the direction passed to wxDataObject in wxGTK clipboard code. We should quert for IsSupportedFormat(format, Set) before calling SetData() with this format, not for IsSupportedFormat(Get) which is the default and was used by the code.

2011-10-18 00:26 VZ, revision 69447

Explicitly use _stati64() with MinGW-W64. Although this compiler provides underscore-less versions of all POSIX functions, this one only exists in a version with underscore, so use it to fix compilation with it in ANSI build.

2011-10-17 20:53 RD, revision 69446

Fix more missing and broken stuff in the interface, for Phoenix

2011-10-16 22:57 SC, revision 69445

supporting deployment < 10.6 when compiling against 10.7

2011-10-16 21:08 SC, revision 69444

removing QD dependency

2011-10-16 19:57 VZ, revision 69442

Align multiline labels correctly in wxMSW owner-drawn buttons. The label wasn't centered correctly in multi-line case. Closes #13567.

2011-10-16 17:59 SJL, revision 69440

Export a couple of Carbon functions to allow wxWebView to build correctly. This was already done in the wxWebView branch but got missed in the merge to trunk.

2011-10-15 16:19 VS, revision 69436

Set wxDataViewCtrl::m_focusWidget in wxGTK. The GtkTreeView control that should get the focus in in scrolled window; the same is already done for wxListBox.

2011-10-15 16:19 VS, revision 69435

Don't call wxEvent::SetTimestamp() twice in InitMouseEvent<>().

2011-10-15 02:20 VZ, revision 69434

Don't use wxMSW version of wxNonOwnedWindow at all under WinCE. This class becomes completely trivial under WinCE as its functionality (setting the window shape) can't be implemented under this platform, so just don't compile it at all there. This both (slightly) reduces the amount of #if checks and should make the code (slightly) smaller.

2011-10-14 03:38 RD, revision 69417

Add data members for RGBValue and HSVValue

2011-10-14 03:37 RD, revision 69416

fix parent class and constant

2011-10-13 16:54 VZ, revision 69411

Don't assert in wxDateTime::Format("%p") in locales not using AM/PM. If a locale doesn't use AM/PM strings, strftime() can return an empty string which does not indicate an error, so don't assert that strftime() failed in this case.

2011-10-13 15:19 VZ, revision 69409

The usual fix for PCH-less compilation after the last commit. Fix wxNonOwnedWindow compilation in wxGTK without PCH.

2011-10-13 14:45 VZ, revision 69408

Implement SetShape() for wxPopupWindow in wxGTK. Move SetShape() implementation from wxTopLevelWindow to wxNonOwnedWindow so that wxPopupWindow, which also inherits from the latter, could use it as well. This makes it possible to have popup windows with irregular shapes in wxGTK as well as in wxMSW and wxOSX.

2011-10-13 08:40 RD, revision 69406

Avoid an assert when m_dir is empty

2011-10-13 08:40 RD, revision 69405

Interface tweaks for Phoenix

2011-10-12 20:08 VZ, revision 69392

And another compilation fix. This time it really does compile.

2011-10-12 20:08 VZ, revision 69391

Compilation fix after a bad merge. Fix bad merge artefact in the previous commit.