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

2012-08-12 14:58 SC, revision 72327

forwarding style changes to documentViews, see #14578

2012-08-12 01:09 VZ, revision 72326

Fix typo in an example of Bind()-ing a function in the event overview. Functors must be passed by const reference, not pointer. Closes #14572.

2012-08-12 01:09 VZ, revision 72325

Update the icon of a parent item without children in wxDataViewCtrl. Ensure that a parent item that doesn't have any children any more isn't left with a "-" expander icon, it can't be collapsed any more but only expanded again (possibly adding children under it dynamically). This results in better behaviour in e.g. the last page of the dataview sample where the container item remained with a "+" icon even after its both children were deleted.

2012-08-12 01:09 VZ, revision 72324

Really delete the item in wxDataViewTreeStore::DeleteItem(). For some incomprehensible reason only child branches were ever deleted from the list of parents children in DeleteItem(), not simple tree items. This meant that reexpanding a node after deleting all its children showed the previously "deleted" children again. Closes #14574.

2012-08-11 15:16 SC, revision 72323

adding SetLabel -> SetTitle redirects, solves missing title updates using wxDocument/wxView

2012-08-10 06:57 RD, revision 72321

Remove wxT from prototype

2012-08-09 18:54 RD, revision 72312

Allow --mac_universal_binary to use a "default" value.

2012-08-09 18:47 RD, revision 72310

Add documentation for wxPrintAbortDialog since it is now documented as a return value type.

2012-08-09 18:16 VS, revision 72309

Compilation fix for r72307.

2012-08-09 17:52 VS, revision 72308

Show progress of printing in wxMSW. Add the number of the page being printed as well as the total to the wxMSW printing progress window. Improved the layout and fixed some i18n issues in the process.

2012-08-09 17:52 VS, revision 72307

Fix crash when canceling printing in wxMSW.

2012-08-09 17:52 VS, revision 72306

Return wxPrintAbortDialog from CreateAbortWindow(). Instead of returning a generic wxWindow*, return the type actually used. It was part of the public header already, but not used in any publicly visible way.

2012-08-09 17:52 VS, revision 72305

Create wxPrintAbortDialog more sensibly. Instead of having an empty constructor and filling the dialog with controls from outside, do the work in the constructor. This changes the meaning of ctor's 'title' argument, but this class' terrible API made it unusable for direct use anyway, so it doesn't seem to be harmful.

2012-08-07 18:43 PC, revision 72303

silence GCC warning suggesting parentheses

2012-08-07 18:24 JS, revision 72302

Backported support for multiple paragraphs per list item by 'deleting' bullet which adds a 'continuation' bullet flag

2012-08-07 12:12 VS, revision 72301

Make the modal print preview window behave like a modal dialog. It's unexpected for a modal dialog window to show up in the taskbar as app's another window. It also shouldn't be possible to minimize a modal window, because it's very confusing when a window is unresponsive without a clear reason, because the modal child is hidden in the taskbar. Set wxFRAME_NO_TASKBAR and remove wxMINIMIZE_BOX to fix this. Do it only for wxPreviewFrame_AppModal.

2012-08-06 14:28 VS, revision 72298

Don't crash in wxBitmap::AllocExclusive(). Just use the usual pattern, instead of abusing existing m_refData. In addition to being cleaner and easier to follow, it also has the benefit of not crashing when cloning ref data into an UnRef()ed bitmap from AllocExclusive().

2012-08-06 13:06 VZ, revision 72297

A better fix for wxHash{Map,Set} with g++ 4.7. This reverts r70556, i.e. removes the scope operators added by it to all WX_DECLARE_HASH_{MAP,SET} macros, and implements a workaround for the problem due to the use of empty base class optimization in g++ 4.7 standard library implementations inside the macros themselves by prepending the hasher and comparator classes with explicit "struct".

2012-08-06 00:44 VZ, revision 72296

Fix wxAutomationObject compilation in PCH-less build. Don't use LCID in a public header, windows.h might not be included. Use WXLCID stand-in instead.

2012-08-06 00:44 VZ, revision 72295

Fix uniconizing hidden top level windows in wxMSW. wxTLW wasn't properly restored if Iconize(false) was called while the window was hidden. Fix this by adding yet another special case to wxTopLevelWindowMSW::Show(). This makes it even less comprehensible than before but there doesn't seem to be any obvious way to simplify this code without totally changing it. Closes #14539.

2012-08-06 00:44 VZ, revision 72294

Fix the checkbox cell size in generic wxDataViewToggleRenderer. r62940 fixed an appearance problem with the checkboxes in wxDataViewCtrl but introduced another one: as the checkbox was now always drawn in the entire cell rectangle, the cell alignment was not taken into account any more. Fix this by only increasing the checkbox rectangle up to the required minimal size but not any more. Closes #14504.

2012-08-06 00:44 VZ, revision 72293

Add webview library in MSVC-specific setup.h. wxNO_WEBVIEW_LIB was documented but not implemented: webview library was never linked in implicitly at all. Fix this by adding the missing #pragma to msvc/wx/setup.h.

2012-08-03 17:36 VZ, revision 72292

Optimization: skip 0-sized cells in wxGrid::CalcCellsExposed(). There is no need to compute intersections with 0-sized cells, skip them to speed up refresh of big grids.

2012-08-03 17:36 VZ, revision 72291

Remove unnecessary statement from the grid sample. No real changes.

2012-08-03 15:05 VZ, revision 72290

Make wxGraphicsContext::GetSize() const. Closes #14556.