X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c3b8a196382ac84ca4a75d2b36cf504bc51180ae..d3fa4bc22e84e3ca4d88cc1772f2d414140a1017:/interface/wx/chartype.h
diff --git a/interface/wx/chartype.h b/interface/wx/chartype.h
index f674710020..f22f9d1345 100644
--- a/interface/wx/chartype.h
+++ b/interface/wx/chartype.h
@@ -100,30 +100,30 @@
/**
wxChar is defined to be
- - @c char when wxUSE_UNICODE==0
- - @c wchar_t when wxUSE_UNICODE==1 (the default).
+ \- @c char when wxUSE_UNICODE==0
+ \- @c wchar_t when wxUSE_UNICODE==1 (the default).
*/
typedef wxUSE_UNICODE_dependent wxChar;
/**
wxSChar is defined to be
- - signed char when wxUSE_UNICODE==0
- - @c wchar_t when wxUSE_UNICODE==1 (the default).
+ \- signed char when wxUSE_UNICODE==0
+ \- @c wchar_t when wxUSE_UNICODE==1 (the default).
*/
typedef wxUSE_UNICODE_dependent wxSChar;
/**
wxUChar is defined to be
- - unsigned char when wxUSE_UNICODE==0
- - @c wchar_t when wxUSE_UNICODE==1 (the default).
+ \- unsigned char when wxUSE_UNICODE==0
+ \- @c wchar_t when wxUSE_UNICODE==1 (the default).
*/
typedef wxUSE_UNICODE_dependent wxUChar;
/**
wxStringCharType is defined to be:
- - @c char when wxUSE_UNICODE==0
- - @c char when wxUSE_UNICODE_WCHAR==0 and wxUSE_UNICODE==1
- - @c wchar_t when wxUSE_UNICODE_WCHAR==1 and wxUSE_UNICODE==1
+ \- @c char when wxUSE_UNICODE==0
+ \- @c char when wxUSE_UNICODE_WCHAR==0 and wxUSE_UNICODE==1
+ \- @c wchar_t when wxUSE_UNICODE_WCHAR==1 and wxUSE_UNICODE==1
The @c wxUSE_UNICODE_WCHAR symbol is defined to @c 1 when building on
Windows while it's defined to @c 0 when building on Unix, Linux or OS X.