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

2007-03-30 16:08 VZ, revision 45156

don't dereference potentially NULL m_sock in Disconnect()

2007-03-30 16:05 VZ, revision 45155

don't use m_stylePopup inside GetRichTextCtrl() before testing whether it's NULL

2007-03-30 15:59 VZ, revision 45154

check that we don't use a NULL pointer in XCopyRemote()

2007-03-30 15:57 VZ, revision 45153

added wxCHECK to ensure that we don't dereference a NULL pointer

2007-03-30 15:53 VZ, revision 45152

no real changes, just fixed confusing (to both people and coverity) mix of testing for m_parent and GetParent()

2007-03-30 15:49 VZ, revision 45151

check for alpha first, then mask, in BlurHorizontal/Vertical(): not only this makes more sense but it also prevents crashing for images which have both (see coverity CID 172)

2007-03-30 15:46 VZ, revision 45150

no real changes, just attempt to work around false coverity report 130

2007-03-30 15:39 VZ, revision 45149

use wxCHECK instead of wxASSERT to avoid use of NULL pointer

2007-03-30 15:35 VZ, revision 45148

don't use potentially NULL m_styleListBox (coverity CID 190)

2007-03-30 15:32 VZ, revision 45147

OnTabEndDrag() didn't handle NULL src_tabs case correctly but it seems that this is not supposed to actually happen, so assert that it doesn't

2007-03-30 15:27 VZ, revision 45146

removed virtual GetSelectedBitmap() from the base wxDC class, it only makes sense for wxMemoryDC

2007-03-30 13:43 VZ, revision 45145

test whether pointer is non-NULL before using it, not after, in wxAnimation::Load() (thanks coverity)

2007-03-30 13:41 VZ, revision 45144

test whether pointer is non-NULL before using it, not after, in wxDoFindStringInList (this was probably harmless though)

2007-03-30 13:39 VZ, revision 45143

added a check that we have a non-NULL scrollbar in wxScrollBarCallback()

2007-03-30 13:34 VZ, revision 45142

don't dereferencep ossibly NULL pointers in DoScreenToClient/ClientToScreen()

2007-03-30 13:22 VZ, revision 45141

don't return junk from wxGetOsVersion() if we failed to execute 'uname -r' (thanks coverity)

2007-03-30 13:19 VZ, revision 45140

replaced run-time tests for wxRICHTEXT_USE_TOOLBOOK with compile-time ones to avoid warnings about condition being always true/false

2007-03-30 13:15 VZ, revision 45139

move m_perDisplayData destruction to dtor from CleanUp() to fix a rare memory leak

2007-03-30 13:11 VZ, revision 45138

check that the pointer is non-NULL before using it in OpenFile() (thanks coverity)

2007-03-30 13:06 VZ, revision 45137

check that filename pointer is non-NULL before using it, not after (coverity warning); don't pass NULL fp to fclose()

2007-03-30 13:04 VZ, revision 45136

don't use C++ comments in C file

2007-03-30 12:58 VZ, revision 45135

disable select root menu command when the root is hidden

2007-03-30 12:57 VZ, revision 45134

don't crash when attempting to select hidden tree root (bug 1681118)

2007-03-30 12:45 VZ, revision 45133
  • D /wxWidgets/trunk/samples/treectrl/treetest.dsp

this project file is obsolete, now treectrl.dsp is used

2007-03-30 12:16 VZ, revision 45132

don't call gtk_label_set_line_wrap() from DoGetBestSize() as this results in an infinite resizing loop when the control is inside a GTK+ widget doing its own layout (such as wxToolBar) [backport from HEAD]