]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/regex/wxregextest.cpp
implement wxTreeCtrl::GetFocusedItem() for wxMSW too (see #10859)
[wxWidgets.git] / tests / regex / wxregextest.cpp
index 39d61a1dda399f33296bf72cb40d75bec3331a14..38286da82cc4edabe2fb4b1269635cafd151aef8 100644 (file)
@@ -169,7 +169,7 @@ void RegExReplaceTestCase::runTest()
     msgstr.Printf(_T("returns '%s' (expected '%s')"), text.c_str(), m_expected.c_str());
     CPPUNIT_ASSERT_MESSAGE((const char*)msgstr.mb_str(), text == m_expected);
 
-    msgstr << _T("matches ") << nRepl << _T(" times (expected ") << m_count << _T(")");
+    msgstr.Printf(_T("matches %d times (expected %d)"), (int)nRepl, (int)m_count);
     CPPUNIT_ASSERT_MESSAGE((const char*)msgstr.mb_str(), nRepl == m_count);
 }
 
@@ -327,7 +327,7 @@ wxString wxRegExTestSuite::FlagStr(int flags)
     }
 
     return _T(" (") + str.Mid(3) + _T(")");
-};
+}
 
 // register in the unnamed registry so that these tests are run by default
 CPPUNIT_TEST_SUITE_REGISTRATION(wxRegExTestSuite);