+ if ( buf )
+ fprintf(m_fp, "%s", (const char*) buf);
+ else // print at least something
+ fprintf(m_fp, "%s", (const char*) strWithLF.ToAscii());
+
+ fflush(m_fp);
+}
+
+// ----------------------------------------------------------------------------
+// wxMessageOutputDebug
+// ----------------------------------------------------------------------------
+
+void wxMessageOutputDebug::Output(const wxString& str)
+{
+#if defined(__WINDOWS__) && !defined(__WXMICROWIN__)
+ wxString out(AppendLineFeedIfNeeded(str));