#pragma hdrstop
#endif
+#include "wx/ustring.h"
+
#ifndef WX_PRECOMP
- #include "wx/strconv.h" // wxConvLibc
+ #include "wx/crt.h"
#include "wx/log.h"
#endif
-#include "wx/ustring.h"
-#include "wx/unichar.h"
-#include "wx/string.h"
-
-
wxUString &wxUString::assignFromAscii( const char *str )
{
size_type len = wxStrlen( str );
return result;
}
-
+
+
+#if SIZEOF_WCHAR_T != 2
+template<>
+wxCharTypeBuffer<wxChar16>::Data
+wxCharTypeBuffer<wxChar16>::NullData(NULL);
+#endif
+
+#if SIZEOF_WCHAR_T != 4
+template<>
+wxCharTypeBuffer<wxChar32>::Data
+wxCharTypeBuffer<wxChar32>::NullData(NULL);
+#endif