git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46631
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#if wxUSE_UNICODE
#if !wxUSE_UTF8_LOCALE_ONLY
#if wxUSE_UNICODE
#if !wxUSE_UTF8_LOCALE_ONLY
-static int ConvertStringToBuf(const wxString& s, char *out, size_t outsize)
+int wxInternalConvertStringToBuf(const wxString& s, char *out, size_t outsize)
{
const wxWX2WCbuf buf = s.wc_str();
{
const wxWX2WCbuf buf = s.wc_str();
#endif // !wxUSE_UTF8_LOCALE_ONLY
#if wxUSE_UNICODE_UTF8
#endif // !wxUSE_UTF8_LOCALE_ONLY
#if wxUSE_UNICODE_UTF8
-static int ConvertStringToBuf(const wxString& s, wchar_t *out, size_t outsize)
+int wxInternalConvertStringToBuf(const wxString& s, wchar_t *out, size_t outsize)
{
const wxWX2WCbuf buf(s.wc_str());
size_t len = wxWcslen(buf);
{
const wxWX2WCbuf buf(s.wc_str());
size_t len = wxWcslen(buf);
wxString s;
s.PrintfV(format, argptr);
wxString s;
s.PrintfV(format, argptr);
- return ConvertStringToBuf(s, out, outsize);
+ return wxInternalConvertStringToBuf(s, out, outsize);
}
#endif // wxUSE_UNICODE
}
#endif // wxUSE_UNICODE