]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/basemsw.cpp
skip the header click event to allow sorting (done in the default handler) to take...
[wxWidgets.git] / src / msw / basemsw.cpp
index 4ba9b8b091703a86d6c85b0929e686dc32f26717..3ef53a321bd94f8ceccc04a7fcd209b70dfffcfc 100644 (file)
@@ -35,6 +35,7 @@
 // wxBase.dll, and MSVC 5 will give linker errors
 #include "wx/recguard.h"
 
+#include "wx/crt.h"
 #include "wx/msw/private.h"
 
 // ============================================================================
@@ -106,3 +107,7 @@ WXDWORD wxConsoleAppTraits::WaitForThread(WXHANDLE hThread)
     return DoSimpleWaitForThread(hThread);
 }
 
+bool wxConsoleAppTraits::WriteToStderr(const wxString& text)
+{
+    return wxFprintf(stderr, "%s", text) != -1;
+}