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-21 15:32 VZ, revision 73549

Fix crash when drawing bitmaps with mask in wxGTK with GTK+ < 2.20. r73386 introduced a crash in wxGTK drawing code when using old GTK+ versions by releasing the mask pixmap prematurely. Apparently GTK+ itself was fixed at some time in 2.19.x time frame but work around the bug for the sake of older GTK+ versions in wxGTK itself by simply releasing the pixmap at the end of DoDrawBitmap(), as pre-r73386 code did.

2013-02-21 14:22 VZ, revision 73548

No real changes, just suppress a harmless warning. g++ warned about possibly uninitialized variable, so initialize it in its declaration even if it was actually already always initialized in the branches where it could be used.

2013-02-20 00:13 VZ, revision 73543

Fix background corruption in scrolled wxHtmlWindow. Draw the background on the entire virtual size, not just the currently shown client size. Closes #15047.

2013-02-17 17:17 SC, revision 73533

applying patch, closes #13045

2013-02-17 15:54 SC, revision 73532

switching notebook implementation to common

2013-02-15 13:40 VZ, revision 73521

Remove wxRTTI macro for wxComboBox from Motif port. This is now done in src/common/combocmn.cpp.

2013-02-15 13:40 VZ, revision 73520

Don't use ternary operator ?: with wxString and literal strings. This results in warnings about converting string literal to (non const) C string. Also remove the now unneeded calls to c_str() inside wxString::Printf().

2013-02-15 13:40 VZ, revision 73519

sAlways iInclude wx/encinfo.h from src/unix/fontutil.cpp. We use wxNativeEncodingInfo in this file, so we always need this header, not just when not using PCH.

2013-02-15 13:40 VZ, revision 73518

Don't connect to the same signal multiple times in wxGTK wxClipboard. We called g_signal_connect("selection_get") in wxClipboard code each time its AddData() method was called. This resulted in progressive but noticeable slowdown as the handler was called more and more times. Only connect to the handler once now. Closes #15038.

2013-02-14 09:07 SC, revision 73517

closes #13841

2013-02-13 20:31 SC, revision 73516

adding CoreText

2013-02-13 20:29 SC, revision 73515

updating dates, fixing product name

2013-02-13 20:28 SC, revision 73514

using default compiler

2013-02-12 20:14 SC, revision 73512

making sure cfbundle identifier has correct characters

2013-02-12 12:49 SC, revision 73510

added new files

2013-02-12 12:18 SC, revision 73509

added new files

2013-02-12 11:51 SC, revision 73508

added new files

2013-02-12 11:49 SC, revision 73507

adding lexlib header include, turning off utf8 default

2013-02-12 11:34 SC, revision 73506

missed the ppc switch

2013-02-12 11:33 SC, revision 73505

increasing deployment to 10.5 min

2013-02-12 08:30 RD, revision 73504

Fix missing or incorrect wxGrid interface items for Phoenix

2013-02-10 17:14 VZ, revision 73495

Account for scrolling when setting the background brush origin in wxMSW. We must use physical coordinates for the brush origin to account for the coordinates offset in scrolled windows, so add MSWAdjustBrushOrg() and call it from MSWGetBgBrushForChild(). Closes #14917.

2013-02-10 17:13 VZ, revision 73494

No changes, just factor out PrepareDC() call in the erase sample. Call this only once in DoPaint() itself instead of calling it twice before calling it. See #14917.

2013-02-10 17:13 VZ, revision 73493

Erase the entire virtual area of the window in the erase sample. Just clearing the DC is not enough when the window is scrolled, so clear the entire virtual area. We should be able to optimize it by clearing just the rectangle currently scrolled into view but this is at least correct, i.e. doesn't result in corrupted display, even if it's suboptimal. See #14917.

2013-02-10 17:13 VZ, revision 73492

Compilation fix for !wxHAS_MSW_BACKGROUND_ERASE_HOOK case. This doesn't actually change anything as wxHAS_MSW_BACKGROUND_ERASE_HOOK is always defined, except under WinCE where this file is not used anyhow, but do test it here for completeness.