]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/msgout.cpp
pass event to validators fisrt, before using the dynamic event table
[wxWidgets.git] / src / common / msgout.cpp
index 2baffdcf32d7161177ea6e967c976726f96ffdc1..aa06d2208bda3f3e4d55eb2771cf3bb9141aefec 100755 (executable)
@@ -121,7 +121,8 @@ void wxMessageOutputDebug::Printf(const wxChar* format, ...)
         #endif
     }
 #else // !MSW, !Mac
-    wxFputs(out, stderr);
+    // FIXME: why is wxFputs() not defined under Linux?
+    fputs(out.mb_str(), stderr);
     fflush(stderr);
 #endif // platform
 }