test for wxUSE_UNICODE_UTF8 in wxUTF8Buf definition was reversed, correct it

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50399 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2007-12-01 15:14:39 +00:00
parent 8ecf734646
commit 53c75dc2f2

View File

@ -228,9 +228,9 @@ typedef wxWritableCharTypeBuffer<wchar_t> wxWritableWCharBuffer;
// type of the value returned by wxString::utf8_str()
#if wxUSE_UNICODE_UTF8
#define wxUTF8Buf wxCharBuffer
#else
#define wxUTF8Buf char *
#else
#define wxUTF8Buf wxCharBuffer
#endif
// ----------------------------------------------------------------------------