wxTextCtrl bug related to \n handling is Carbon related and is therefore

common to CodeWarrior builds and Apple DevTools builds


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15352 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2002-05-03 20:15:48 +00:00
parent 1b0674f799
commit a95bd96b46

View File

@@ -1104,7 +1104,7 @@ void wxLogTextCtrl::DoLogString(const wxChar *szString, time_t WXUNUSED(t))
wxString msg;
TimeStamp(&msg);
#if defined(__WXMAC__) && !defined(__DARWIN__)
#if defined(__WXMAC__)
// VZ: this is a bug in wxMac, it *must* accept '\n' as new line, the
// translation must be done in wxTextCtrl, not here! (FIXME)
msg << szString << wxT('\r');