fix technical accuracy of statement
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30535 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -487,10 +487,11 @@ wxTextOutputStream& wxTextOutputStream::operator<<(float f)
|
|||||||
wxTextOutputStream &endl( wxTextOutputStream &stream )
|
wxTextOutputStream &endl( wxTextOutputStream &stream )
|
||||||
{
|
{
|
||||||
//RN: Normally a single char on builds without a real
|
//RN: Normally a single char on builds without a real
|
||||||
//wchar_t will call the wxUint16 version, which
|
//wchar_t will call the version that corresponds to the
|
||||||
//is not what we want (will print a 10 numeric value,
|
//numeric value of wchar_t itself (wxUint16 if 2 bytes etc.),
|
||||||
//not a newline). Thus, we need to send it
|
//which is not what we want (will print a 10 numeric value,
|
||||||
//a string in that case instead.
|
//not a newline). Thus, we need to send it a string in that
|
||||||
|
// case instead so that it correctly prints the newline.
|
||||||
#if !wxUSE_UNICODE || wxWCHAR_T_IS_REAL_TYPE
|
#if !wxUSE_UNICODE || wxWCHAR_T_IS_REAL_TYPE
|
||||||
return stream << wxT('\n');
|
return stream << wxT('\n');
|
||||||
#else
|
#else
|
||||||
|
Reference in New Issue
Block a user