+// ----------------------------------------------------------------------------
+// wxMessageOutputStderr
+// ----------------------------------------------------------------------------
+
+void wxMessageOutputStderr::Output(const wxString& str)
+{
+ const wxWX2MBbuf buf = str.mb_str();
+
+ if ( buf )
+ fprintf(stderr, "%s", (const char*) buf);
+ else // print at least something
+ fprintf(stderr, "%s", (const char*) str.ToAscii());
+}
+
+// ----------------------------------------------------------------------------
+// wxMessageOutputDebug
+// ----------------------------------------------------------------------------
+
+void wxMessageOutputDebug::Output(const wxString& str)
+{
+ wxString out(str);
+
+#if defined(__WXMSW__) && !defined(__WXMICROWIN__)