From 9733be36fd253720640803402d653b258abc438c Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Wed, 11 Jun 2014 14:15:39 -0400 Subject: [PATCH] MGR: Use the formal method to redirect to stdout (introduced in 3.0) --- clientgui/LogBOINC.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clientgui/LogBOINC.cpp b/clientgui/LogBOINC.cpp index 644d607393..fe4f52a649 100644 --- a/clientgui/LogBOINC.cpp +++ b/clientgui/LogBOINC.cpp @@ -25,8 +25,8 @@ #include "LogBOINC.h" -wxLogBOINC::wxLogBOINC() { - m_fp = stdout; +wxLogBOINC::wxLogBOINC() : wxLogStderr(stdout) +{ } void wxLogBOINC::DoLogText(const wxString& msg) {