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

2006-03-20 22:26 VS, revision 38228

fixed GetBitmap() to respect the "param" argument if !wxUSE_FILESYSTEM

2006-03-20 18:26 RD, revision 38227

reSWIGged

2006-03-20 18:02 RD, revision 38226

Editors, Renderers and Attrs need to have a destructor so SWIG won't complain about it, but since they are protected in C++ we need to give them a dummy one. In the future these shoud be changed to use %ref/%unref and let SWIG manage the refcount for us.

2006-03-20 17:56 RD, revision 38225

Use the static method instead of the global alias

2006-03-20 17:09 VZ, revision 38224

initialize wxZipFSHandler even when wxUSE_GIF=0

2006-03-20 16:44 RR, revision 38223

Further compilation fixes.

2006-03-20 16:41 RR, revision 38222

Compilation fixes.

2006-03-20 16:37 RR, revision 38221

Added (yet unfunctional) skeleton files fir generic implementation of wxDataViewCtrl.

2006-03-20 12:17 VZ, revision 38220

fixed Clear() for GTK+ 2.4+

2006-03-20 12:14 VZ, revision 38219

don't use toupper() with non-ASCII key codes (backport from HEAD)

2006-03-19 13:43 VZ, revision 38218

corrected cross-reference to non existent note

2006-03-19 10:55 SC, revision 38217

rewire char events in case there is no focusable control on a tlw

2006-03-19 02:22 RD, revision 38216

A bit of cleanup

2006-03-19 02:17 RD, revision 38215

docstrings

2006-03-19 02:16 RD, revision 38214

Add wxHelpProvider destructor

2006-03-18 22:17 RD, revision 38213

Demonstrate setting metal appearance for wxMac

2006-03-18 21:58 VZ, revision 38212

explain that wxABI_VERSION shouldn't be used in the source files; and do not use it

2006-03-18 17:14 VZ, revision 38211

do not assign uniChar to wxKeyEvent::m_keyCode for EVT_CHAR events; this breaks any code handling things like arrow keys as it gets absolutely useless kDownArrowCharCode instead of WXK_DOWN for example

2006-03-18 17:04 VZ, revision 38210

removed redundant declaration (no real changes)

2006-03-18 16:57 VZ, revision 38209

backported crash fix for last change

2006-03-18 16:53 VZ, revision 38208

fixed crash introduced in rev. 187 for all non-MSW platforms

2006-03-18 14:25 RR, revision 38207

use wxWindow instead of wxWindowGtk

2006-03-18 13:59 RR, revision 38206

Commited SetDoubleBufferd() in wxABI_VERSION checks for wxGTK2.

2006-03-18 13:32 MR, revision 38205

Update copyright years. Is manual2e.tex even used anymore? Much information in it is out of date.

2006-03-18 13:20 MR, revision 38204

Update copyright year.