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

2008-11-04 12:15 VZ, revision 56678

disable the test under Windows as it hangs and prevents buildbot from working

2008-11-04 12:11 VZ, revision 56677

include wx/menu.h as we delete wxMenu pointer in this header (and creating a separate .cpp file just to move the code doing it there seems impractical)

2008-11-04 02:46 VZ, revision 56674

Review/simplify/cleanup MDI classes for all platforms and introduce base classes for wxMDI{Parent,Child}Frame and wxMDIClientWindow. Also use generic MDI implementation for wxMotif as it seems to be more functional and definitely is more maintained (we probably should use the generic version for wxGTK too).

2008-11-04 01:42 VZ, revision 56673

fix wxXPMDataHandler silently broken by long->wxBitmapType change

2008-11-03 22:58 VZ, revision 56672

added wxrc to the makefiles

2008-11-03 21:55 VZ, revision 56671

include richtext library in BUILT_WX_LIBS (in particular so that it appears in 'wx-config --libs all' output) if it's being built

2008-11-03 19:32 FM, revision 56670

build fix (the sample uses an undocumented function of wxFont)

2008-11-03 18:50 FM, revision 56669

build fix

2008-11-03 18:24 FM, revision 56668

build fixes

2008-11-03 18:15 FM, revision 56667

build fixes

2008-11-03 17:24 VZ, revision 56666

don't crash trying to draw buttons with invalid bitmaps (the real fix would be to avoid adding them to the toolbar in the first place, of course...)

2008-11-03 17:10 VZ, revision 56665

fix (harmless) unused variable warning

2008-11-03 17:02 FM, revision 56664

fix the incoherence pointed out by ifacecheck between wx docs, that documents usage of the wxFontFamily, wxFontStyle and wxFontWeight enums in wxFont setters and getters, and the actual sources, which use 'int' instead; provided the same backward-compatibility pattern already used for wxBrush,wxPen both against 'int' overloads and against the wxDeprecatedGUIConstants enum values

2008-11-03 17:02 JMS, revision 56663

Moved Get/SetPropertyText/BackgroundColour() member functions from wxPropertyGrid to wxPropertyGridInterface

2008-11-03 14:37 FM, revision 56662

remaining h* interface header revision

2008-11-03 13:36 VZ, revision 56661

define wxHAS_CONFIG_TEMPLATE_RW if template wxConfig::Read/Write() are available; use it to exclude the calls to these functions from the test to fix VC6 compilation

2008-11-03 12:47 VZ, revision 56660

wx/tls.h belongs to base headers, not core (#10148)

2008-11-03 12:44 VZ, revision 56659

define operator<<(wxLongLong_t) for VC6 whether wxUSE_STD_IOSTREAM is 0 or 1 (fixes test compilation in the latter case)

2008-11-03 11:57 FM, revision 56658

fixed doxygen warnings produced by the ifacecheck fixes

2008-11-03 01:11 VZ, revision 56657

blind fix for yet another VC6 compilation error

2008-11-03 00:31 VZ, revision 56656

really fix VC6 compilation of all testsi (without breaking VC9)

2008-11-02 23:21 VZ, revision 56654

oops, fix the test broken by the last compilation fix

2008-11-02 22:50 VZ, revision 56653

ugly VC6 compilation fix (non-ugly doesn't want to work for some reason as VC6 flat out refuses to use our overloaded operator<<)

2008-11-02 22:30 VZ, revision 56652

undo the previous change, it's not needed any more now that we overload assertEquals(int,long) too and it broke VC6 compilation again

2008-11-02 22:16 FM, revision 56651

declare all NameStr[] strings as const char using the correct WXDLLIMPEXP_DATA_ macros; in the process, change wxPropGrid window classes to take 'const wxString& name' arguments instead of 'const wxChar *name'