git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39063
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxHtmlListBox::OnLinkClicked() to take advantage of it.
- Added an easier to use wxMenu::AppendSubMenu()
- wxString <-> wxColour conversions in wxColour class (Francesco Montorsi).
+- Fixed bug with ignoring blank lines in multiline wxGrid cell labels
wxMSW:
{
const wxString& line = lines[l];
+ if ( line.empty() )
+ {
+ *(textOrientation == wxHORIZONTAL ? &y : &x) += dc.GetCharHeight();
+ continue;
+ }
+
long lineWidth,
lineHeight;
dc.GetTextExtent(line, &lineWidth, &lineHeight);