]> git.saurik.com Git - wxWidgets.git/commitdiff
this one should really work
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 23 Mar 2009 11:01:33 +0000 (11:01 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 23 Mar 2009 11:01:33 +0000 (11:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59762 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/events/clone.cpp

index b552422845d5ded88f32a4116faef8c5cd832fd6..4b8298f4379335bc3124417416c60e498079bd0c 100644 (file)
@@ -55,14 +55,16 @@ void EventCloneTestCase::CheckAll()
     const wxClassInfo *ci = wxClassInfo::GetFirst();
     for (; ci; ci = ci->GetNext())
     {
+        wxString cn = wxString(ci->GetClassName());
+    
         // is this class derived from wxEvent?
         if ( !ci->IsKindOf(CLASSINFO(wxEvent)) ||
-                wxString(ci->GetClassName()) == "wxEvent" )
+             cn == "wxEvent" )
             continue;
 
         const std::string
             msg = std::string("Event class \"") + 
-                  std::string(ci->GetClassName()) + "\"";
+                  std::string(cn.c_str()) + "\"";
 
         CPPUNIT_ASSERT_MESSAGE( msg, ci->IsDynamic() );