From f70cea2bdcf13f53d5a0965148ea41157c569bd1 Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Mon, 23 Mar 2009 10:04:56 +0000 Subject: [PATCH] blind carbon build fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/events/clone.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/events/clone.cpp b/tests/events/clone.cpp index 450294f966..23998fb587 100644 --- a/tests/events/clone.cpp +++ b/tests/events/clone.cpp @@ -61,7 +61,8 @@ void EventCloneTestCase::CheckAll() continue; const std::string - msg = std::string("Event class \"") + ci->GetClassName() + "\""; + msg = std::string("Event class \"") + + std::string(ci->GetClassName().c_str()) + "\""; CPPUNIT_ASSERT_MESSAGE( msg, ci->IsDynamic() );