Made standard bullet names translatable

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@61183 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2009-06-24 10:28:04 +00:00
parent e8e94d3c99
commit 2614c696fe
2 changed files with 39 additions and 7 deletions

View File

@@ -7034,10 +7034,10 @@ bool wxRichTextStdRenderer::DrawBitmapBullet(wxRichTextParagraph* WXUNUSED(parag
/// Enumerate the standard bullet names currently supported
bool wxRichTextStdRenderer::EnumerateStandardBulletNames(wxArrayString& bulletNames)
{
bulletNames.Add(wxT("standard/circle"));
bulletNames.Add(wxT("standard/square"));
bulletNames.Add(wxT("standard/diamond"));
bulletNames.Add(wxT("standard/triangle"));
bulletNames.Add(wxTRANSLATE("standard/circle"));
bulletNames.Add(wxTRANSLATE("standard/square"));
bulletNames.Add(wxTRANSLATE("standard/diamond"));
bulletNames.Add(wxTRANSLATE("standard/triangle"));
return true;
}