X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c3b8a196382ac84ca4a75d2b36cf504bc51180ae..92c0fc34c104c8d7c12d6a3b78ea232690fc23f4:/interface/wx/chartype.h
diff --git a/interface/wx/chartype.h b/interface/wx/chartype.h
index f674710020..b66f25b00d 100644
--- a/interface/wx/chartype.h
+++ b/interface/wx/chartype.h
@@ -2,7 +2,6 @@
// Name: chartype.h
// Purpose: interface of global functions
// Author: wxWidgets team
-// RCS-ID: $Id$
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
@@ -100,30 +99,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.