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

2011-11-05 11:42 FM, revision 69673

document wxConfigPathChanger helper class

2011-11-05 11:28 VZ, revision 69672

Rename lineAnchor in Scintilla code to avoid shadowing warning. Local variable "lineAnchor" in Editor::SetRectangularRange() was shadowing the member variable Editor::lineAnchor, resulting in warnings from some compilers (AIX xlC, Sun CC). Rename it to "lineAnchorRect", just as it was done in the latest Scintilla sources, to avoid them.

2011-11-04 18:41 VZ, revision 69664

Correct the misleading example of using id ranges in XRC documentation. "range[end]" is the last id in the range, inclusive, not the first id after it so any loops iterating over all ids in the range should cover it as well.

2011-11-04 18:40 VZ, revision 69663

Simplify wxIdRange code by using new XRCID_Assign() function. Only traverse the id hash once in XRCID_Assign() instead of using RemoveXRCIDEntry() to delete the old entry (which usually doesn't exist so this traversed the entire hash) followed by XRCID_Lookup() to create a new one.

2011-11-04 13:02 VZ, revision 69662

Fix choice of tree item icon for the selected state in wxMSW. The logic for selecting the item icon was broken when selected image was specified as it was not taken into account as fallback for selected expanded state so selected icon was used only for collapsed items. Fix this by using the selected icon if it is specified and selected expanded one is not.

2011-11-04 10:09 VZ, revision 69661

Make wxQsort() definition exactly the same as declaration. Remove the extra "const" in the first parameter.

2011-11-04 04:38 RD, revision 69659

Add wxAnyButton so the shared class hierarchy of wxButton and wxToggleButton is accurate.

2011-11-04 02:33 RD, revision 69656

Fix missing and broken interface items for Phoenix

2011-11-03 10:38 JJ, revision 69655

Upadte setup for OpenVMS

2011-11-03 00:42 RD, revision 69646

Fix missing or broken interface items for Phoenix

2011-11-02 21:22 RD, revision 69644

Fix missing or broken interface items for Phoenix

2011-11-02 20:08 VZ, revision 69643

Improvements to German translation. - Changed phrasing of some texts - Replaced words by more commonly used ones - Translated untranslated words and sentences - Used clear translation for vague expressions - Used common translation for multiply used terms like "save" Patch from Sebastian Walderich.

2011-11-02 20:08 VZ, revision 69642

Orthographical fixes in German translation. - Corrected misspelled words - Corrected upper and lower case words - Corrected some typos, like "HTLM" and "DDMEL" - Corrected some grammar errors Patch from Sebastian Walderich.

2011-11-02 20:08 VZ, revision 69641

Hyphen fixes in German translation. - Added missing hyphens to concatenate german words - Concatenated wrongly separated word Patch from Sebastian Walderich.

2011-11-02 20:08 VZ, revision 69640

Punctuation fixes in German translation. - Fixed some menu entries which where using '$' instead of '&' - Added missing punctuation marks to equal the original text - Removed unneeded and double characters Patch from Sebastian Walderich.

2011-11-02 20:08 VZ, revision 69639

Corrections to spaces in German translation. Patch from Sebastian Walderich.

2011-11-01 13:04 VZ, revision 69626

Explicitly include X11/Xlib.h to fix AIX build. At least under AIX X11/Xlib.h is not included from X11/Xutil.h so include it explicitly ourselves. It should do no harm on the other systems.

2011-11-01 13:04 VZ, revision 69625

Define _LINUX_SOURCE_COMPAT for AIX build. This takes care of the conflict between GTK+ headers and #define of func_data in AIX sys/timer.h.

2011-10-31 20:41 VZ, revision 69619

Make wxTreeListEvent dynamically creatable. This is unfortunately required by wxEvent::Clone() support unit test so provide the default ctor in this class even though it doesn't make any sense in normal use.

2011-10-31 20:33 VZ, revision 69618

Correct wxFileName::SetPath() documentation. It wrongly claimed that this function affected the full path, i.e. including name and extension, which was simply wrong. Closes #13612.

2011-10-31 17:09 PC, revision 69617

fix creation of bitmap from image with requested depth 32

2011-10-31 15:24 VZ, revision 69616

Suppress harmless unused variable warnings in wxSocket under AIX. The size of the buffer is not used with AIX conventions for gethostbyaddr_r() and getservbyname_r() functions.

2011-10-31 15:24 VZ, revision 69615

Fix compilation of wxGethostbyname_r() and wxGethostbyaddr_r() under AIX. gethostbyname_r() and gethostbyaddr_r() functions return int, not hostent*, under AIX so assign their return value to the error indicator.

2011-10-31 15:24 VZ, revision 69614

Compilation fix for AIX: fix the name of wxGetservBuf ctor. The ctor was wrongly called so wxGetservBuf class couldn't be compiled, breaking compilation under AIX and any other systems with 4 argument getservbyname_r().

2011-10-31 13:15 JS, revision 69613

Fixed #13535: wxRichTextCtrl: Incorrectly documented or named functions