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:
@@ -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
|
||||||
|
Reference in New Issue
Block a user