projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1f8fd3
)
use wxCRT_VsprintfA name instead of vsprintf, for consistency
author
Václav Slavík
<vslavik@fastmail.fm>
Fri, 22 Jun 2007 18:41:07 +0000
(18:41 +0000)
committer
Václav Slavík
<vslavik@fastmail.fm>
Fri, 22 Jun 2007 18:41:07 +0000
(18:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46650
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/common/wxcrt.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/common/wxcrt.cpp
b/src/common/wxcrt.cpp
index be2c04dfeffb0547b5f74011baa2c003ced5ccdb..a098825bf3e40799ddc587c2a28c9e8f5c26a249 100644
(file)
--- a/
src/common/wxcrt.cpp
+++ b/
src/common/wxcrt.cpp
@@
-592,11
+592,11
@@
static size_t PrintfViaString(T *out, size_t outsize,
int wxVsprintf(char *str, const wxString& format, va_list argptr)
{
#if wxUSE_UTF8_LOCALE_ONLY
- return
vsprintf
(str, format.wx_str(), argptr);
+ return
wxCRT_VsprintfA
(str, format.wx_str(), argptr);
#else
#if wxUSE_UNICODE_UTF8
if ( wxLocaleIsUtf8 )
- return
vsprintf
(str, format.wx_str(), argptr);
+ return
wxCRT_VsprintfA
(str, format.wx_str(), argptr);
else
#endif
#if wxUSE_UNICODE