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

2013-02-05 21:46 VZ, revision 73466

Ignore empty LC_XXX variables in locale detection code. If LC_ALL or LC_MESSAGES is set but empty, ignore it and use the next environment variable. This is consistent with the standard setlocale() behaviour which only uses LC_ALL if it is set and not empty. Closes #15006.

2013-02-05 21:46 VZ, revision 73465

Fix spelling in utils/screenshotgen sources. No real changes. Closes #15024.

2013-02-05 21:46 VZ, revision 73464

No changes, just remove unused part of expression. We don't do anything with the result of inserting the watch in fswatchercmn.cpp. Closes #15027.

2013-02-05 21:46 VZ, revision 73463

Add simple tests for Scintilla annotations to the stc sample. Show how add, remove and clear annotations and also how to update the text width when long annotations are added.

2013-02-05 21:46 VZ, revision 73462

Use a single EVT_MENU_RANGE in stc sample instead of tons of EVT_MENU. Make it easier to add new menu items forwarded to the editor in the sample. No real changes.

2013-02-05 21:46 VZ, revision 73461

Only impose minimal height for buttons with non-empty label in wxMSW. wxBU_EXACTFIT in wxMSW only affected the width of the button but not its height, which was still made as big as the standard button size as otherwise the button text was rendered badly. However there is no reason to do this for the buttons without any text, so let wxBU_EXACTFIT be really exact, in both directions, in this case. Also document this rather non obvious wxBU_EXACTFIT behaviour.

2013-02-05 21:46 VZ, revision 73460

Really fix resizing of wxGird column/rows after a hidden one. The previous fix (r73399) broke resizing from the side of the preceding grid line, restore the old code and just add a loop finding the first visible line before the one being clicked. See #14947.

2013-02-05 21:46 VZ, revision 73459

Fix wxGridColumnOperations::GetLineBefore() for the first column. We should return -1 from here as there is no column before the first one and wxGridRowOperations::GetLineBefore() already does this.

2013-02-04 17:16 VZ, revision 73456

Avoid harmless warning about comparing unsigned with 0. Fix warning in assert in wxProcess::SetPriority(): don't compare unsigned priority with wxPRIORITY_MIN which is just 0, the condition is always true. Closes #14931.

2013-02-04 14:54 JS, revision 73455

Invalid conversion compile error fix (GTK+ 2.12.9)

2013-02-04 13:52 JS, revision 73454

Added support for sub-object virtual attributes (temporary attributes for characters within objects) and also virtual text that can replace the actual text.

2013-02-01 10:38 SJL, revision 73453

Rename all WEB_VIEW* style identifiers to WEBVIEW*. This makes wxWebView consistent with the rest of the toolkit. Closes #15013

2013-01-27 15:49 SN, revision 73445

No changes, just remove unneeded variable initialization in carbon listctrl. Closes #14997.

2013-01-27 15:42 SN, revision 73444

No real changes, just spelling fixes. Closes #14998.

2013-01-27 15:41 SN, revision 73443

No real changes, cleaned up whitespace, fixed spelling. See #14998.

2013-01-27 15:30 SN, revision 73442

Just some spelling fixes, no real changes. Closes #15001.

2013-01-27 09:41 JS, revision 73441

Prevent assertions because of zero image size

2013-01-24 10:24 JS, revision 73438

Updated the Latvian translation (Janis Eisaks)

2013-01-24 10:23 JS, revision 73437

Updated the Latvian translation (Janis Eisaks)

2013-01-23 12:44 VZ, revision 73436

Initialize all wxHTTPStream members in ctor. Don't leave m_httpsize and m_read_bytes uninitialized. Closes #14993.

2013-01-23 12:44 VZ, revision 73435

No real changes, just fix some typos in comments in wxMSW code. Closes #14994.

2013-01-23 11:15 JJ, revision 73434

let wxCheckListBox get the properties of wxCheckListBoxBase (was wxListBox) for wxGTK1, just like the other versions of wx

2013-01-22 08:18 JJ, revision 73429

Update openVMS compile support

2013-01-21 17:37 VZ, revision 73428

Fix background drawing in EVT_ERASE_BACKGROUND handler in erase sample. Clear the DC before moving its offset to ensure that it's cleared entirely and also draw the background using the virtual, not client, size. See #14917.

2013-01-21 17:37 VZ, revision 73427

Don't include wxUniversal configurations in MSVC project files. wxUniversal is practically not used under MSW and just confuses people.