+{
+ wxString out;
+
+ va_list args;
+ va_start(args, format);
+
+ out.PrintfV(format, args);
+ va_end(args);
+
+ out.Replace(wxT("\t"), wxT(" "));
+
+ ::wxLogMessage(wxT("%s"), out.c_str());
+}
+
+#endif // wxUSE_BASE
+
+// ----------------------------------------------------------------------------
+// wxMessageOutputMessageBox
+// ----------------------------------------------------------------------------
+
+#if wxUSE_GUI
+
+void wxMessageOutputMessageBox::Printf(const wxChar* format, ...)