]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/log.cpp
changed DoDragDrop(bool) into DoDragDrop(int) and added support for wxDrag_DefaultMov...
[wxWidgets.git] / src / common / log.cpp
index 420c172a631a9c5f048448aa1e4ea32c3bd1b8dd..93842ef1007a5dd9635b8355f2aa381db075cec5 100644 (file)
@@ -168,7 +168,7 @@ void wxVLogFatalError(const wxChar *szFormat, va_list argptr)
 #if wxUSE_GUI
     wxMessageBox(s_szBuf, _("Fatal Error"), wxID_OK | wxICON_STOP);
 #else
-    fprintf(stderr, _("Fatal error: %s\n"), s_szBuf);
+    wxFprintf(stderr, _("Fatal error: %s\n"), s_szBuf);
 #endif
 
     abort();
@@ -764,16 +764,24 @@ void wxLogStream::DoLogString(const wxChar *szString, time_t WXUNUSED(t))
 
 wxLogChain::wxLogChain(wxLog *logger)
 {
+    m_bPassMessages = TRUE;
+
     m_logNew = logger;
     m_logOld = wxLog::SetActiveTarget(this);
 }
 
-void wxLogChain::SetLog(wxLog *logger)
+wxLogChain::~wxLogChain()
 {
+    delete m_logOld;
+
     if ( m_logNew != this )
         delete m_logNew;
+}
 
-    wxLog::SetActiveTarget(logger);
+void wxLogChain::SetLog(wxLog *logger)
+{
+    if ( m_logNew != this )
+        delete m_logNew;
 
     m_logNew = logger;
 }