Compile fix (VC++ 6 doesn't like wxString::Format with only 1 arg: gives several pages of template-related warnings)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47961 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2007-08-08 11:53:13 +00:00
parent bbf941bda9
commit f196316400

View File

@@ -575,7 +575,7 @@ wxString MyHtmlListBox::OnGetItem(size_t n) const
{ {
if ( !n && m_firstItemUpdated ) if ( !n && m_firstItemUpdated )
{ {
return wxString::Format(_T("<h1><b>Just updated</b></h1>")); return _T("<h1><b>Just updated</b></h1>");
} }
#ifdef USE_HTML_FILE #ifdef USE_HTML_FILE