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-01-10 18:01 VZ, revision 70310

Add missing wxUSE_TOOLTIPS and wxUSE_UXTHEME checks to wxMSW. Allow compiling wxStatusBar without tooltips and theme support. Closes #13846.

2012-01-09 19:59 VS, revision 70308

Don't crash in generic wxDataViewCtrl if selected column is removed.

2012-01-09 19:48 VZ, revision 70307

Add check for _T() to svn pre-commit hook. _T() shouldn't be used in any new code so don't allow committing it. We could have used "svnlook diff" instead of "svnlook cat" and check only for _T() not being added but in practice there shouldn't be any difference and using "cat" is simpler.

2012-01-09 19:48 VZ, revision 70306

Use wxT() instead of _T() in XTI code. _T() is deprecated and doesn't work with Solaris compiler, use wxT() instead. Also change one occurrence of _T() inside a comment in wx/debug.h.

2012-01-09 19:48 VZ, revision 70305

Use wxT(), not _T(), in wxRichText code. _T() doesn't compile with Sun CC and is deprecated, please don't use it.

2012-01-09 19:48 VZ, revision 70304

Resolve ambiguity between two wxAuiNotebook overloads. wxAuiNotebook-specific InsertPage() and the version inherited from wxBookCtrlBase were ambiguous if used with default values for their 2 last arguments. Resolve this by removing defaults from the inherited version.

2012-01-09 15:19 JS, revision 70303

Improved layout, in particular passed a container size in order to allow relative size calculation

2012-01-09 15:04 DS, revision 70302

no code changes, fixed some typos

2012-01-09 08:18 JJ, revision 70301

Correction for the #define wxUSE_DRAG_AND_DROP 0 case

2012-01-09 07:31 PC, revision 70300

move render params out of wxDataViewCustomRenderer they only need to exist for the duration of the render() call

2012-01-08 19:27 JS, revision 70299

Fixed default style setting to take into account text boxes; fixed AddBoxStyle

2012-01-08 15:52 VZ, revision 70298

Fix menu creation in wxOSX/Carbon when using wx in a plugin. In this case the host application may have its own menu so we need to avoid conflicting with its menu elements. Closes #13832.

2012-01-08 15:52 VZ, revision 70297

Enhance wxRibbonToolBar functionality to wxRibbonButtonBar level. Allow inserting and deleting tools and not only appending them. Add possibility to enable/disable and toggle tools. Send wxUpdateUIEvent for the tools. Add various properties accessors. Closes #13835.

2012-01-08 15:52 VZ, revision 70296

Don't generate drag events without valid item in wxGenericListCtrl. Dragging the mouse from the empty area of the control must not generate any drag events as there is nothing to drag there. Also, MSW version doesn't do it. So fix the generic version to avoid generating such invalid drag events too by checking that we have a valid item before checking that we're dragging. Closes #1619.

2012-01-08 15:52 VZ, revision 70295

Add wxTopLevelWindow::SetRepresentedFilename(). This currently is only implemented under OS X and sets the proxy icon there but could be implemented to do something useful under the other platforms too in the future. Closes #13797.

2012-01-08 11:54 VZ, revision 70294

Another wxOSX/Carbon compilation fix after wxListCtrlBase changes. Fix DoInsertColumn() parameter const-ness too.

2012-01-08 08:12 PC, revision 70293

use correct signature for init functions

2012-01-08 07:40 PC, revision 70292

remove unnecessary class definitions and variables

2012-01-08 07:30 PC, revision 70291

remove unnecessary finalize overrides

2012-01-08 01:55 VZ, revision 70290

Fix wxOSX/Carbon compilation after wxListCtrlBase introduction. Make wxListCtrl::SetColumn() item parameter const reference.

2012-01-07 17:35 VZ, revision 70287

Compilation fixes to joystick sample after r70279.

2012-01-07 17:11 VZ, revision 70286

Compilation fix for PCH-less build after wxListCtrlBase changes. Include the base class declaration from wx/listbase.h.

2012-01-07 16:09 VZ, revision 70285

Improve column auto-sizing code in generic wxListCtrl. Take the width of the header itself into account when setting width to wxLIST_AUTOSIZE. Also refactor the code to reuse the code used in wxLIST_AUTOSIZE_USEHEADER case in SetColumnWidth() when inserting or updating the column width to this value.

2012-01-07 16:09 VZ, revision 70284

Add support for wxLIST_AUTOSIZE_USEHEADER to InsertColumn(). Use the fixed default width in InsertColumn() by default for compatibility but allow more useful behaviour in it by supporting wxLIST_AUTOSIZE_USEHEADER as well.

2012-01-07 16:09 VZ, revision 70283

Add convenient wxListCtrl::AppendColumn() wrapper. In the vast majority of cases, columns are just appended to the end and not inserted at arbitrary positions in wxListCtrl so provide a convenient wrapper to do this, especially as it's really trivial to do it now when it can be done only once at wxListCtrlBase level.