X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/99119b0e8532793ff045ba965e58634581a51f12..5f9e369af0c834bbde0f7f5d2047abd736967f58:/tests/any/anytest.cpp?ds=inline diff --git a/tests/any/anytest.cpp b/tests/any/anytest.cpp index 2a2c0bab9d..2b36e3bb38 100644 --- a/tests/any/anytest.cpp +++ b/tests/any/anytest.cpp @@ -2,7 +2,6 @@ // Name: tests/any/anytest.cpp // Purpose: Test the wxAny classes // Author: Jaakko Salli -// RCS-ID: $Id$ // Copyright: (c) the wxWidgets team // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -356,11 +355,7 @@ void wxAnyTestCase::GetAs() // should not work. CPPUNIT_ASSERT(!m_anyStringString1.GetAs(&l)); CPPUNIT_ASSERT(!m_anyStringString1.GetAs(&ul)); - // FIXME: This statement results in heap corruption in wxOSX/PPC builds - // for some unknown reason. -#if !defined(__WXOSX__) || !defined(__POWERPC__) CPPUNIT_ASSERT(!m_anyStringString1.GetAs(&f)); -#endif // OSX/PPC CPPUNIT_ASSERT(!m_anyStringString1.GetAs(&b)); // Let's test some other conversions from string that should work. @@ -407,7 +402,7 @@ void wxAnyTestCase::GetAs() res = m_anyDoubleDouble1.GetAs(&s); CPPUNIT_ASSERT(res); double d2; - res = s.ToDouble(&d2); + res = s.ToCDouble(&d2); CPPUNIT_ASSERT(res); CPPUNIT_ASSERT_DOUBLES_EQUAL(d2, TEST_FLOAT_CONST, FEQ_DELTA); }