]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/strings/strings.cpp
The presence of the effects controls (i.e. color) should not depend on whether or...
[wxWidgets.git] / tests / strings / strings.cpp
index 19414f05d551fdbb3f2e594f0a2321f94825ba64..a17c8155190586f1413115074ee291ca3817b513 100644 (file)
@@ -197,7 +197,7 @@ void StringTestCase::Conversion()
         CPPUNIT_ASSERT( memcmp(theBuffer.data(), "The\0String", 11) == 0 );
 
         wxString szTheString2("The\0String", wxConvLocal, 10);
-        CPPUNIT_ASSERT( wxMemcmp(szTheString2.c_str(), L"The\0String", 11) == 0 );
+        CPPUNIT_ASSERT( wxTmemcmp(szTheString2.c_str(), L"The\0String", 11) == 0 );
 #else
         wxString szTheString(wxT("TheString"));
         szTheString.insert(3, 1, '\0');