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

2006-03-21 15:47 VZ, revision 38253

show the function in which the assert failure occured if the compiler supports it

2006-03-21 15:43 VZ, revision 38252

use new wxAPPLY_T macro instead of 3 identical __XDATE__/__XTIME__/__XFILE__ ones

2006-03-21 15:19 VZ, revision 38251

show the function in which the assert failure occured if the compiler supports it

2006-03-21 15:12 VZ, revision 38250

recognize bitmap2 tag as containing a bitmap (used for disabled toolbar buttons)

2006-03-21 14:17 VZ, revision 38249

don't evaluate assert expression unless the condition is false (patch 1450705)

2006-03-21 14:16 VZ, revision 38248

added semicolons after wxCHECK()s (part of patch 1450705)

2006-03-21 14:05 VZ, revision 38247

Made wxList::compatibility_iterator a class in wxUSE_STL == 0 case too instead of a simple typedef to "Node *" to be able to initialize it with NULL in ctor which makes the behaviour of the code with and without wxUSE_STL the same. The price to pay is that the code like wxList:compatibility_iterator ci; ci = cond ? list->GetFirst() : wxList::compatibility_iterator(); doesn't compile any more and has to be replaced with (more clear anyhow) wxList:compatibility_iterator ci; if ( cond ) ci = list->GetFirst();

2006-03-21 13:53 SC, revision 38246

gcc 4.0 for all

2006-03-21 13:33 VZ, revision 38245

can't pass objects through ... (please don't ever ignore this gcc warning)

2006-03-21 13:31 VZ, revision 38244

added wxGtkString::c_str()

2006-03-21 13:17 VZ, revision 38243

return NULL (and not invalid) iterator from compatibility_iterator::GetPrevious() when we're at the start of the list (see patch 1445506)

2006-03-21 13:14 VZ, revision 38242

added assert to verify that operands are initialized in compatibility_iterator::operator==()

2006-03-21 13:10 VZ, revision 38241

better fix for infinite loop in HandleOnNavigationKey() when wxUSE_STL==1 and start_node is NULL

2006-03-21 13:00 VZ, revision 38240

reuse operator bool() check in compatibility_iterator::IndexOf() instead of rewriting it

2006-03-21 12:53 VZ, revision 38239

fix an infinite loop in HandleOnNavigationKey() when wxUSE_STL==1 and start_node is NULL

2006-03-21 12:30 RR, revision 38238

Added windowing and scrolling logic to generic implementation of wxDataViewCtrl (it runs now).

2006-03-21 11:30 JS, revision 38237

Fix accelerstors with down and left

2006-03-21 11:29 JS, revision 38236

Fix accelerators with down and left

2006-03-21 11:25 JS, revision 38235

Fixed a crash when deleting the last timer

2006-03-21 11:22 JS, revision 38234

*** empty log message ***

2006-03-21 09:24 MR, revision 38233

Use wxGtkString here too

2006-03-20 23:25 VS, revision 38232

removed Julian's hack that is no longer needed after wxBitmap stubs were added even for DIB-less build

2006-03-20 23:24 VZ, revision 38231

explain why do you need wxUSE_WXDIB

2006-03-20 23:23 VZ, revision 38230

provide stubs for conversion to/from image functions even when wxUSE_WXDIB==0, this allows to not test for it in other places

2006-03-20 22:57 VZ, revision 38229

removed hard tabs