]> git.saurik.com Git - wxWidgets.git/commitdiff
Added space after list item number, otherwise number is hard against following text.
authorJulian Smart <julian@anthemion.co.uk>
Sun, 18 Dec 2005 12:22:20 +0000 (12:22 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sun, 18 Dec 2005 12:22:20 +0000 (12:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36424 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
src/html/m_list.cpp

index be2ad0e647fdf8144e156d2f05b19d06c1a0c7c5..41c9c13e1b22a3828b8b1b0c3917e83fc4bc1fe7 100644 (file)
@@ -38,6 +38,7 @@ All (GUI):
   windows (wxDialog, wxFrame).
 - Fixed memory leak of pending events in wxEvtHandler
 - Added wxRadioBox::IsItemEnabled/Shown()
+- Added space after list item number in wxHTML.
 
 wxMSW:
 
index 844cc73d71a4c92cbc9570d5b6006a3ccb24452c..97864acc7c67c32f4c3f2bee4f456ced9130d659 100644 (file)
@@ -254,7 +254,7 @@ TAG_HANDLER_BEGIN(OLULLI, "OL,UL,LI")
             {
                 c->SetAlignHor(wxHTML_ALIGN_RIGHT);
                 wxString markStr;
-                markStr.Printf(wxT("%i."), m_Numbering);
+                markStr.Printf(wxT("%i. "), m_Numbering);
                 c->InsertCell(new wxHtmlWordCell(markStr, *(m_WParser->GetDC())));
             }
             m_WParser->CloseContainer();