Made standard bullet names translatable

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61184 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2009-06-24 10:28:20 +00:00
parent 3c10f6db79
commit 04529b2af2
2 changed files with 39 additions and 7 deletions

View File

@@ -6489,10 +6489,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;
}