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

2007-03-29 10:52 CE, revision 45106

zip32 should be zip

2007-03-29 09:17 CE, revision 45105

remove contrib docs from daily builds

2007-03-29 09:16 CE, revision 45104

uppercase CVS

2007-03-29 09:04 CE, revision 45103

remove build of contrib docs

2007-03-29 09:01 CE, revision 45102

only get todays files from top level dir

2007-03-29 06:18 VS, revision 45101

PCH-less compilation fix

2007-03-28 18:25 VZ, revision 45100

added wxString::operator[](int) as it's commonly used in code working with file/stream read functions which have int return value

2007-03-28 18:03 VS, revision 45099

allow passing wx[W]CharBuffer to wx vararg templates

2007-03-28 11:35 VS, revision 45098

split string.{h,cpp} into {string,stringimpl,arrstr}.{h,cpp} to make the files more managable

2007-03-28 09:46 VS, revision 45097

made wxHashMap work with any form of strings

2007-03-28 09:40 VS, revision 45096

added test for operator?: and wxCStrData

2007-03-28 09:37 VS, revision 45095

re-enabled using std::string for wxStringImpl if wxUSE_STL again

2007-03-28 00:09 RD, revision 45094

revert last change, it wasn't intended

2007-03-28 00:02 VZ, revision 45093

update from helix84

2007-03-27 13:42 JS, revision 45092

Need an extra pixel when divider present

2007-03-27 13:41 JS, revision 45091

Need an extra pixel or best size is incorrect when we have a divider (apparent with e.g. wxAUI)

2007-03-27 10:13 VS, revision 45090

disabled VC6 warning about passing a macro that expands to nothing to DECLARE_LOG_FUNCTION2_IMPL macro

2007-03-27 09:40 VS, revision 45089

fixed compilation with 2.8 compatibility off: wxTR_EXTENDED is deprecated

2007-03-27 01:49 RD, revision 45088

Merge recent changes from 2.8 branch. Make updates for recent changes on CVS HEAD. Remove or workaround deprecated items. Fix compile errors.

2007-03-26 23:46 VZ, revision 45087

make Ctrl-PageUp/Down work for changing notebook pages even when there is a wxWindow (i.e. not a native wxControl) in the hierarchy; this comes at the price of not being able to use the same key combinations for horizontal scrolling of the windows which do not have wxHSCROLL style and this seems like an acceptable tradeoff

2007-03-26 23:40 VZ, revision 45086

removed wxHAS_NATIVE_TAB_TRAVERSAL which is now defined in wx/window.h

2007-03-26 22:15 VZ, revision 45085

use NavigateIn() method instead of sending wxNavigationKeyEvent directly

2007-03-26 22:10 VZ, revision 45084

added wxWindow::NavigateIn(); provide wxGTK implementation of DoNavigateIn() working with native tab traversal

2007-03-26 21:24 VZ, revision 45083

added taborder sample

2007-03-26 21:12 VS, revision 45082

added basic test for wxLocale

2007-03-26 21:07 VS, revision 45081

use wxString for wxXmlResource::Set/GetDomain(), it's simpler

2007-03-26 21:05 VS, revision 45080

use wxStrings in wxLocale methods, _() and wxGetTranslation(), so that it can be used with any string literals

2007-03-26 20:50 VS, revision 45079

escape _ in LaTeX sources

2007-03-26 20:28 VS, revision 45078

Preparing wxString for UTF-8 representation: 1) split into wxStringImpl class that has std::string-like API and operates on char* or wchar_t* data and wxString class that provides Unicode iterators and indexes 2) added both char* and wchar_t* versions of many wxString methods to avoid having to use _T()

2007-03-26 20:08 RD, revision 45077

Forward port of my recent changes in the 2.8 branch: * Force use of floating point math in wxGCDC::DoDrawEllipticArc. * Check for 0.5 offset in wxGCDC::DoDrawRoundedRectangle and DoDrawEllipse. Set wxGDIPlusContext to use the offset. * Avoid crash in wxStdDialogButtonSizer::Realize if there is no negative button. * Provide implementations for wxCairoPathData::AddPath, wxCairoContext::Clip, wxCairoContext::DrawBitmap, wxCairoContext::DrawIcon, and wxCairoContext::GetTextExtent. * Fix wxCairoContext::DrawText to draw the text using the upper-left corner for the x,y position, not the baseline. * Fix wxMacCoreGraphicsRenderer::CreateContext to be able to use a wxMemoryDC as the target. * Map wxTELETYPE font family on wxMac to a monospace font.

2007-03-26 19:55 , revision 45076
  • A /wxWidgets/tags/wxPy_last_28_merge
  • D /wxWidgets/tags/wxPy_last_28_merge/.cvsignore
  • D /wxWidgets/tags/wxPy_last_28_merge/acinclude.m4
  • D /wxWidgets/tags/wxPy_last_28_merge/aclocal.m4
  • D /wxWidgets/tags/wxPy_last_28_merge/art
  • D /wxWidgets/tags/wxPy_last_28_merge/autoconf_inc.m4
  • D /wxWidgets/tags/wxPy_last_28_merge/autogen.sh
  • D /wxWidgets/tags/wxPy_last_28_merge/BuildCVS.txt
  • D /wxWidgets/tags/wxPy_last_28_merge/build
  • D /wxWidgets/tags/wxPy_last_28_merge/config.guess
  • D /wxWidgets/tags/wxPy_last_28_merge/config.sub
  • D /wxWidgets/tags/wxPy_last_28_merge/configure
  • D /wxWidgets/tags/wxPy_last_28_merge/configure.in
  • D /wxWidgets/tags/wxPy_last_28_merge/contrib
  • D /wxWidgets/tags/wxPy_last_28_merge/debian
  • D /wxWidgets/tags/wxPy_last_28_merge/demos
  • D /wxWidgets/tags/wxPy_last_28_merge/descrip.mms
  • D /wxWidgets/tags/wxPy_last_28_merge/difflast.pl
  • D /wxWidgets/tags/wxPy_last_28_merge/distrib
  • D /wxWidgets/tags/wxPy_last_28_merge/docs
  • D /wxWidgets/tags/wxPy_last_28_merge/include
  • D /wxWidgets/tags/wxPy_last_28_merge/install-sh
  • D /wxWidgets/tags/wxPy_last_28_merge/lib
  • D /wxWidgets/tags/wxPy_last_28_merge/locale
  • D /wxWidgets/tags/wxPy_last_28_merge/Makefile.in
  • D /wxWidgets/tags/wxPy_last_28_merge/misc
  • D /wxWidgets/tags/wxPy_last_28_merge/mkinstalldirs
  • D /wxWidgets/tags/wxPy_last_28_merge/regen
  • D /wxWidgets/tags/wxPy_last_28_merge/samples
  • D /wxWidgets/tags/wxPy_last_28_merge/setup.h.in
  • D /wxWidgets/tags/wxPy_last_28_merge/setup.h_vms
  • D /wxWidgets/tags/wxPy_last_28_merge/src
  • D /wxWidgets/tags/wxPy_last_28_merge/tests
  • D /wxWidgets/tags/wxPy_last_28_merge/utils
  • D /wxWidgets/tags/wxPy_last_28_merge/version-script.in
  • D /wxWidgets/tags/wxPy_last_28_merge/wx-config-inplace.in
  • D /wxWidgets/tags/wxPy_last_28_merge/wx-config.in
  • D /wxWidgets/tags/wxPy_last_28_merge/wxBase.spec
  • D /wxWidgets/tags/wxPy_last_28_merge/wxGTK.spec
  • D /wxWidgets/tags/wxPy_last_28_merge/wxMGL.spec
  • D /wxWidgets/tags/wxPy_last_28_merge/wxMotif.spec
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/config.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/contrib/gizmos/wxCode/src
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/AlphaDrawing.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/AnimateCtrl.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/CustomTreeCtrl.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/Dialog.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/DirDialog.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/DragImage.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/DynamicSashWindow.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/GraphicsContext.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/GridSimple.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/I18N.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/Main.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/run.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/ScrolledWindow.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/SearchCtrl.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/SizedControls.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/demo/TreeMixin.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/distrib/all/build-all
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/distrib/all/build-deb
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/distrib/makedev.bat
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/distrib/makerpm
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/docs/CHANGES.html
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/docs/CHANGES.txt
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/samples/doodle/setup.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/aui.i
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/grid.i
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/gtk/aui.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/gtk/aui_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/gtk/grid.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/gtk/_controls.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/gtk/_controls_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/gtk/_core.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/gtk/_core_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/gtk/_gdi.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/gtk/_gdi_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/gtk/_windows.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/gtk/_windows_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/mac/aui.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/mac/aui_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/mac/grid.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/mac/_controls.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/mac/_controls_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/mac/_core.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/mac/_core_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/mac/_gdi.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/mac/_gdi_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/mac/_windows.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/mac/_windows_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/msw/aui.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/msw/aui_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/msw/grid.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/msw/_controls.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/msw/_controls_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/msw/_core.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/msw/_core_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/msw/_gdi.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/msw/_gdi_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/msw/_windows.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/msw/_windows_wrap.cpp
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/_bitmap.i
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/_cmndlgs.i
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/_combobox.i
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/_event.i
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/_gdicmn.i
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/_graphics.i
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/_menu.i
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/_sizers.i
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/_toolbar.i
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/src/_window.i
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/TreeMixinTest.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_borders.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_buttonKeyHandler.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_floatOnParent.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_gcDrawBitmap.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_gcdcDrawEllipticArc.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_gcdcDrawRect.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_gcMemDC.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_gcText.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_griddrag.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_logWindow.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_mediaCtrl.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/tests/test_scaleText.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/buttonpanel.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/buttons.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/customtreectrl.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/dialogs.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/docview.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/filebrowsebutton.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/flatnotebook.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/inspect.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/inspection.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/masked/maskededit.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/mixins/inspect.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/mixins/inspection.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/mixins/listctrl.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/mixins/treemixin.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/ogl/_basic.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/ogl/_lines.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/plot.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/lib/wxpTag.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/py/frame.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/helpviewer.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/img2py.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/CHANGES.txt
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/globals.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/images.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/panel.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/params.py
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/src-images/ToolMoveDown.png
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/src-images/ToolMoveLeft.png
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/src-images/ToolMoveRight.png
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/src-images/ToolMoveUp.png
  • A /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/src-images/TreeComment.png
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/TODO.txt
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/tools.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/tree.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/undo.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/xrced.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/xrced.xrc
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wx/tools/XRCed/xxx.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wxaddons/sized_controls.py
  • R /wxWidgets/tags/wxPy_last_28_merge/wxPython/wxPython/__init__.py
  • D /wxWidgets/tags/wxPy_last_28_merge/wxwin.m4
  • D /wxWidgets/tags/wxPy_last_28_merge/wxX11.spec

This commit was manufactured by cvs2svn to create tag 'wxPy_last_28_merge'.

2007-03-26 19:55 RD, revision 45075

0.9.1 of TreeMixin

2007-03-26 19:53 RD, revision 45074

Fix off-by-one error

2007-03-26 19:30 VZ, revision 45073

use native TAB traversal for GTK+ 2

2007-03-26 19:27 VZ, revision 45072

added ellipsis to a couple of stock labels

2007-03-26 19:20 VZ, revision 45071

fixed compilation without PCH

2007-03-26 19:06 VZ, revision 45070

use more complicated layout; added wxTE_PROCESS_TAB test

2007-03-26 18:56 RD, revision 45069

new test app

2007-03-26 18:55 RD, revision 45068

Patch from Rob McMullen allowing the plot title to be optional

2007-03-26 18:54 RD, revision 45067

fix offset of widget

2007-03-26 18:52 RD, revision 45066

Use disabled state if needed

2007-03-26 18:50 RD, revision 45065

Update to 0.9 of TreeMixin.

2007-03-26 18:49 RD, revision 45064

regenerated for the 2.8.3.0 release

2007-03-26 15:14 VZ, revision 45063

send wxNavigationKeyEvent to the correct window

2007-03-26 15:07 VZ, revision 45062

added taborder sample

2007-03-26 13:07 VZ, revision 45061

assert if AddRoot() is called twice for a wxTR_HIDE_ROOT tree

2007-03-26 09:42 JS, revision 45060

Typo correction

2007-03-26 08:25 VS, revision 45059

added missing operators to wxString::reverse_iterator

2007-03-25 23:00 VZ, revision 45058

do accept focus in notebook as it needs it for tabs

2007-03-25 22:55 VZ, revision 45057

don't accept focus in book control itself