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

2010-07-28 13:26 VZ, revision 65125

Fix harmless float to int conversion warnings in wxOSX build. Add casts to truncate the values as the code intended anyhow.

2010-07-28 13:26 VZ, revision 65124

Correct format specifiers used to show wxIPV4address. wxIPV4address::IPAddress() used %lu to show each of (byte-sized) IPv4 address components for some reason, which resulted in asserts about format specifier mismatch. Fix this by just using %u. Closes #12272.

2010-07-28 12:31 JWE, revision 65123

finished the code. Now juste finished the documentation

2010-07-27 23:45 VS, revision 65122

Add index-based selection functions to wxDataViewListCtrl. These are convenience functions for work working with indexes, for consistency with other wxDataViewListCtrl methods.

2010-07-27 23:45 VS, revision 65121

Add item<->row mapping helpers to wxDataViewListCtrl. These are commonly needed when using wxDataViewListCtrl, yet they were only available in wxDataViewIndexListModel.

2010-07-27 23:45 VS, revision 65120

Created the model in wxDataViewListCtrl::Create(). It was totally unexpected that construction through the ctor behaved differently from Create(). Also, the behavior now actually matches documentation.

2010-07-27 23:45 VS, revision 65119

Allow empty message in wxRearrangeDialog. If the message is empty, don't reserve space for it at the top; instead, just make the dialog a bit smaller.

2010-07-27 19:53 JWE, revision 65118

add a sample for auto completon. Work not

2010-07-27 19:04 RR, revision 65117

Let wxMSW report wxDataViewCustomRenderer::LeftClick() report the click position relative to the inner cell, not the window - as in wxGTK, fixes #12270: wxDataViewCustomRenderer::LeftClick behaves differently under wxGTK and wxMSW

2010-07-27 12:15 JWE, revision 65116

add some const and update autoSelection methods

2010-07-27 11:21 FM, revision 65115

mention wxSystemSettings::GetColour() in wxWindow::SetBackgroundColour() docs

2010-07-26 12:28 FM, revision 65114

add a spacer in case the progress dialog is built without labels (elapsed/estimated/remaining) time nor buttons

2010-07-26 12:08 VZ, revision 65113

No changes, just use traditional English name for Mozart's work. In English, this work (K. 525) is always referred to with its indefinite article included and its appearance without it is jarring.

2010-07-26 05:51 MYA, revision 65112

HitTest and Image dialog works well with floating images

2010-07-25 21:45 RR, revision 65111

Minor correction to smart pointer docs

2010-07-25 21:27 RR, revision 65110

Tried to make wxDataViewModel docs clearer

2010-07-25 20:39 VZ, revision 65109

Only define WXUSINGDLL in multilib builds for wxscintilla.lib. In monolithic builds wxscintilla is linked directly into the one and only wx DLL and doesn't need to import anything from it, WXUSINGDLL is only needed in multilib case when wxscintilla is part of wxCore DLL and does need to import symbols (e.g. wxQsort() used by wxVector) from wxBase one.

2010-07-25 20:39 VZ, revision 65108

No real changes, just rearrange wxCursor::InitFromImage() in wxGTK. Make it more clear that the function deals with two cases by using if/else instead of if+return. Also use smart wxGtkObject pointer instead of calling g_object_unref() manually.

2010-07-25 20:39 VZ, revision 65107

Correct creation of the mask for wxImage cursors in wxGTK. The code created the monochrome bitmap used by wxCursor(wxImage) ctor incorrectly resulting in bad cursor appearance. Use the right values for foreground and background pixels (which are inversed compared to naive expectations) to fix this. Closes #11989.

2010-07-25 15:55 FM, revision 65106

make POSIX and Windows implementation of wxThread::Run() coherently assert when trying to Run() a thread twice; add a test for it.

2010-07-25 15:34 JS, revision 65105

Fix VC++ compile error

2010-07-25 15:23 FM, revision 65104

fix double documentation for the same wxLogTrace() functions

2010-07-25 13:53 FM, revision 65103

refactor wxLog documentation moving verbose parts to the wxLog overview and grouping similar wxLog functions together

2010-07-25 13:42 VZ, revision 65102

Build fix: don't test for __WXMSW__ using #if in wx/defs.h. __WXMSW__ should be tested using #ifdef but in fact there doesn't seem to be any need to test for it at all here as __CYGWIN__ implies __WXMSW__ anyhow. Closes #12266.

2010-07-25 13:26 FM, revision 65101

do not add files in wxDebugReport::AddFile if copy failed