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]

2007-03-30 12:14 VZ, revision 45131

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)

2007-03-30 11:53 VZ, revision 45130

backported clarifications to Wait() semantics from HEAD

2007-03-30 11:50 VZ, revision 45129

fix PangoFontMetrics leak in GetCharHeight() (bug 1691180) [backport from HEAD]

2007-03-30 11:48 VZ, revision 45128

fix PangoFontMetrics leak in GetCharHeight() (bug 1691180)

2007-03-30 08:09 CE, revision 45127

allow absolute path

2007-03-30 02:07 VZ, revision 45126

define wxHAS_NATIVE_TAB_TRAVERSAL in wx/features.h; include wx/defs.h from wx/containr.h to get this definition

2007-03-29 19:10 VS, revision 45125

fixed warning about comparing int to size_t

2007-03-29 18:42 VS, revision 45124

added wxCStrData::operator- for compatibility with expressions like 'c_str() + n - 2'

2007-03-29 18:35 VS, revision 45123

added creation of wxUniChar from int and conversion to int, for backward compatibility

2007-03-29 18:14 VZ, revision 45122

fix memory leak when handling background attribute (patch 1687900) [backport from HEAD]

2007-03-29 18:12 VZ, revision 45121

fix memory leak when handling background attribute (patch 1687900)

2007-03-29 18:02 VZ, revision 45120

fix compilation with wxUSE_EXTENDED_RTTI && !WXWIN_COMPATIBILITY_2_6 (bug 1688249) [backport from HEAD]

2007-03-29 18:01 VZ, revision 45119

fix compilation with wxUSE_EXTENDED_RTTI && !WXWIN_COMPATIBILITY_2_6 (bug 1688249)

2007-03-29 17:48 VZ, revision 45118

added wx/cocoa/tooltip.h to COCOA_HDR (bug 1689148) [backport from HEAD]

2007-03-29 17:43 VZ, revision 45117

rebaked with the fix for the directories with spaces in their names

2007-03-29 17:42 VZ, revision 45116

added wx/cocoa/tooltip.h to COCOA_HDR (bug 1689148)

2007-03-29 17:40 VZ, revision 45115

rebaked after adding new string-related headers

2007-03-29 17:28 VZ, revision 45114

fixed bug in wxThread::Wait() in console applications introduced in 2.8.3 (bug 1690777)

2007-03-29 16:14 VS, revision 45113

more wxString::append() tests

2007-03-29 15:05 VZ, revision 45112

added overloads of operators for wint_t for VC when the code is compiled with /Zc:wchar_t option (default in VC8)

2007-03-29 14:04 VZ, revision 45111

define ATTRIBUTE_PRINTF(m,n) and not just ATTRIBUTE_PRINTF as nothing when the compiler doesn't support it, otherwise it can result in compiler errors when wx/defs.h is included before a standard header using ATTRIBUTE_PRINTF() as (at least version 2.6.20 of) xmlerror.h from libxml2 does [backport from HEAD]

2007-03-29 14:03 VZ, revision 45110

define ATTRIBUTE_PRINTF(m,n) and not just ATTRIBUTE_PRINTF as nothing when the compiler doesn't support it, otherwise it can result in compiler errors when wx/defs.h is included before a standard header using ATTRIBUTE_PRINTF() as (at least version 2.6.20 of) xmlerror.h from libxml2 does

2007-03-29 13:28 CE, revision 45109

put html docs in own dir

2007-03-29 12:13 CE, revision 45108

remove contrib docs from daily builds

2007-03-29 11:03 CE, revision 45107

add tex2rtf docs to routine build