fixed passing of strings to vararg templates in ANSI build

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45992 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2007-05-12 17:18:23 +00:00
parent f764e0ed58
commit 075ff4102b

View File

@@ -73,7 +73,7 @@ wxString wxArgNormalizedString::GetString() const
return wxString(wx_reinterpret_cast(const char*, m_ptr));
else
#endif
return wxString(wx_reinterpret_cast(const wchar_t*, m_ptr));
return wxString(wx_reinterpret_cast(const wxChar*, m_ptr));
#endif // !wxUSE_UTF8_LOCALE_ONLY
}