]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/logg.cpp
make --static flag act on --cppflags too.
[wxWidgets.git] / src / generic / logg.cpp
index fcfe1afc434e0e42a9389dcdaacd48ab96f06a90..a0ff4d36721712bffb44a1b0687b43f3566f8ced 100644 (file)
@@ -44,6 +44,7 @@
     #include "wx/sizer.h"
     #include "wx/statbmp.h"
     #include "wx/button.h"
+    #include "wx/settings.h"
 #endif // WX_PRECOMP
 
 #if wxUSE_LOGGUI || wxUSE_LOGWINDOW
@@ -1075,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');