From b43ca95a8f6429fcea2ba6dae792950baf86a619 Mon Sep 17 00:00:00 2001 From: Ove Kaaven Date: Sat, 24 Apr 1999 13:07:43 +0000 Subject: [PATCH] Small bugfix for wxString::Printf regarding %hs... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2272 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/string.cpp b/src/common/string.cpp index 539b631152..9b9cc89f0f 100644 --- a/src/common/string.cpp +++ b/src/common/string.cpp @@ -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) { -- 2.45.2