]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/events/clone.cpp
respect wxBU_NOTEXT style in wxButton
[wxWidgets.git] / tests / events / clone.cpp
index 450294f96603f8056c7eb5f507583514c4f9a6a3..4b8298f4379335bc3124417416c60e498079bd0c 100644 (file)
@@ -55,13 +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 \"") + ci->GetClassName() + "\"";
+            msg = std::string("Event class \"") + 
+                  std::string(cn.c_str()) + "\"";
 
         CPPUNIT_ASSERT_MESSAGE( msg, ci->IsDynamic() );