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

2012-06-28 13:58 VZ, revision 71878

Fix off by 1 error in wxHTML font size from points calculation. m_FontSize is in 1..7 range, not 0..6, so add 1 to it when setting it from the index into m_FontsSizes array. Also update the comment explaining the valid range of m_FontsSize. Closes #14442.

2012-06-28 08:55 RD, revision 71876

Interface fix for Phoenix

2012-06-26 20:25 RD, revision 71866

Don't hide the m_mm_to_pix_x and m_mm_to_pix_y in the base class by redefining them in a derived class. Fixes #14399.

2012-06-26 04:01 RD, revision 71862

Add missing parent classes

2012-06-25 17:23 SC, revision 71859

adding new API needed for screenshots as old method stopped working in 10.7

2012-06-25 10:02 JS, revision 71857

Fix for page break problem: fixes #14429

2012-06-24 18:18 PC, revision 71856

update size hints when decoration size becomes known, and preserve size hint increments

2012-06-24 08:33 PC, revision 71855

implement wxCairoContext::GetPartialTextExtents for wxGTK

2012-06-23 14:27 VZ, revision 71844

Clarify wxFileOffset description a bit. It wasn't clear how wxFileOffset was defined under Windows without wxHAS_HUGE_FILES.

2012-06-23 05:33 PC, revision 71843

properly handle stupidly small maximum size hints

2012-06-23 02:44 RD, revision 71835

Add simple document for wxGUIEventLoop

2012-06-22 08:41 PC, revision 71831

fix SetSizeHints when wxDefaultSize is given for min or max size GTK does unexpected things if both min and max size are not explicitly set

2012-06-21 22:12 JS, revision 71830

Fixed #14429: Printing a large table in wxRichTextCtrl fails

2012-06-21 21:12 JS, revision 71828

Prevent index access error

2012-06-21 20:39 JS, revision 71827

Compilation fix

2012-06-21 15:19 VZ, revision 71825

Don't call gtk_window_set_geometry_hints() if there are no hints to set. Calling gtk_window_set_geometry_hints() with the hints mask of 0 doesn't work correctly and sets the window size to the smallest possible. Avoid this by simply not calling this function at all if there is nothing to do.

2012-06-20 20:24 VZ, revision 71824

Add MSVS autoexp.dat fragment for some common wxWidgets types. As we have gdb pretty printers under the version control, it makes sense to also put MSVS visualizers there as well.

2012-06-20 19:54 VZ, revision 71823

Use wx/msw/winundef.h for wxGTK under Windows too. Avoid clashes due to <windows.h> definitions in wxGTK too. Closes #14427.

2012-06-20 19:54 VZ, revision 71822

No real changes, just simplify wxGDIPlusContext::GetTextExtent() a bit. Don't call Font::GetSize() and FontFamily::GetEmHeight() thrice, just do it once and store the results. This makes the code both simpler and shorter and marginally more efficient.

2012-06-20 19:54 VZ, revision 71821

Fix text extent computation in wxMSW wxGraphicsContext. The results were incorrect for italic or bold fonts as we hardcoded FontStyleRegular instead of using the real font style. Closes #14421.

2012-06-20 19:54 VZ, revision 71820

Add missing c_str() and similar calls to samples in STL build. Don't rely on implicit conversion of wxString to char*/wxChar*, it doesn't exist in STL build. Add explicit c_str(), wc_str() or t_str() calls. Closes #14420.

2012-06-20 19:54 VZ, revision 71819

Use C, not C++, comments in wx/gtk/chkconf.h. Remove C++ comments added in r71796. See #14412.

2012-06-20 19:10 RD, revision 71811

Interface tweaks for Phoenix

2012-06-20 12:34 SC, revision 71810

make sure native font exists, before asking about fixed width

2012-06-20 09:16 SC, revision 71809

using UTType constants wherever possible to avoid typos, checking for failed conversions, leveraging native conversion of types, fixes #13442