]> git.saurik.com Git - wxWidgets.git/commitdiff
use Unix line ending when compiled when the Apple DevTools
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Mon, 5 Nov 2001 21:08:03 +0000 (21:08 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Mon, 5 Nov 2001 21:08:03 +0000 (21:08 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12332 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/logg.cpp

index 6a12263b57cd6bb3b00c4b62bb937957e26191de..a0ff4d36721712bffb44a1b0687b43f3566f8ced 100644 (file)
@@ -1076,7 +1076,7 @@ void wxLogTextCtrl::DoLogString(const wxChar *szString, time_t WXUNUSED(t))
     wxString msg;
     TimeStamp(&msg);
 
-#ifdef __WXMAC__
+#if defined(__WXMAC__) && !defined(__DARWIN__)
     // 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');