]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/chartype.h
Initial commit for Laurent Humbertclaude's Windows slave.
[wxWidgets.git] / include / wx / chartype.h
index 64f7147cbbc744d1c0a1be43059fe0518e32aaf0..73606a61e0f714d18dee40b5f687c1df6aeb6272 100644 (file)
@@ -38,8 +38,8 @@
 #endif /* !defined(wxUSE_WCHAR_T) */
 
 /* Unicode support requires wchar_t */
-#if wxUSE_UNICODE && !wxUSE_WCHAR_T
-    #error "wchar_t must be available in Unicode build"
+#if !wxUSE_WCHAR_T
+    #error "wchar_t must be available"
 #endif /* Unicode */
 
 /*
     typedef char wxChar;
     typedef signed char wxSChar;
     typedef unsigned char wxUChar;
-#else /* Unicode */
+#else
     /* VZ: note that VC++ defines _T[SU]CHAR simply as wchar_t and not as    */
     /*     signed/unsigned version of it which (a) makes sense to me (unlike */
     /*     char wchar_t is always unsigned) and (b) was how the previous     */