Small bugfix for wxString::Printf regarding %hs...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2272 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven 1999-04-24 13:07:43 +00:00
parent 031bc97f46
commit b43ca95a8f

View File

@ -1185,8 +1185,8 @@ int wxString::PrintfV(const wxChar* pszFormat, va_list argptr)
if (s.Len() < min_width)
s.Pad(min_width - s.Len(), _T(' '), adj_left);
*this += s;
done = TRUE;
}
done = TRUE;
break;
case _T('n'):
if (ilen == 0) {