]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/msgout.cpp
document On{Open,Save}Document()
[wxWidgets.git] / src / common / msgout.cpp
index 897414c21d9e0eaff738f7a3543eaad263b11b59..9fabb4a987bc8e034d4a1be2ec76492138bcfa15 100644 (file)
@@ -43,9 +43,6 @@
 #if defined(__WINDOWS__)
     #include "wx/msw/private.h"
 #endif
 #if defined(__WINDOWS__)
     #include "wx/msw/private.h"
 #endif
-#ifdef __WXMAC__
-    #include "wx/mac/private.h"
-#endif
 
 // ===========================================================================
 // implementation
 
 // ===========================================================================
 // implementation
@@ -169,19 +166,6 @@ void wxMessageOutputDebug::Output(const wxString& str)
     out.Replace(wxT("\t"), wxT("        "));
     out.Replace(wxT("\n"), wxT("\r\n"));
     ::OutputDebugString(out.wx_str());
     out.Replace(wxT("\t"), wxT("        "));
     out.Replace(wxT("\n"), wxT("\r\n"));
     ::OutputDebugString(out.wx_str());
-#elif defined(__WXMAC__) && !defined(__DARWIN__)
-    if ( wxIsDebuggerRunning() )
-    {
-        Str255 pstr;
-        wxString output = out + wxT(";g") ;
-        wxMacStringToPascal(output.c_str(), pstr);
-
-        #ifdef __powerc
-            DebugStr(pstr);
-        #else
-            SysBreakStr(pstr);
-        #endif
-    }
 #else
     wxFputs( out , stderr ) ;
     if ( out.Right(1) != wxT("\n") )
 #else
     wxFputs( out , stderr ) ;
     if ( out.Right(1) != wxT("\n") )