From 03e039357be1ff52124b71b1fd1a2f1ce6f55c71 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Tue, 12 Nov 2013 03:45:39 -0800 Subject: [PATCH] MGR: Fix compile break on Mac --- clientgui/NoticeListCtrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientgui/NoticeListCtrl.cpp b/clientgui/NoticeListCtrl.cpp index ebd9f05b3f..0a1027ad5e 100644 --- a/clientgui/NoticeListCtrl.cpp +++ b/clientgui/NoticeListCtrl.cpp @@ -250,7 +250,7 @@ void CNoticeListCtrl::OnLinkClicked( wxWebViewEvent& event ) { void CNoticeListCtrl::OnWebViewError( wxWebViewEvent& event ) { fprintf(stderr, "wxWebView error: target=%s, URL=%s\n", - event.GetTarget().c_str(), event.GetURL().c_str()); + (event.GetTarget().ToStdString()).c_str(), (event.GetURL().ToStdString()).c_str()); event.Skip(); }