From: Vadim Zeitlin Date: Thu, 8 Mar 2007 01:33:01 +0000 (+0000) Subject: removed WXWIN_COMPATIBILITY_24 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0475aefcb4d102151bab2b415b20d446b507cd38 removed WXWIN_COMPATIBILITY_24 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44683 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/hashes/hashes.cpp b/tests/hashes/hashes.cpp index a277728591..a9930a3209 100644 --- a/tests/hashes/hashes.cpp +++ b/tests/hashes/hashes.cpp @@ -264,17 +264,8 @@ void HashesTestCase::wxUntypedHashTableDeleteContents() CPPUNIT_ASSERT( FooObject::count == 0 ); } -#if WXWIN_COMPATIBILITY_2_4 -WX_DECLARE_LIST(Foo, wxListFoos); -#endif - WX_DECLARE_HASH(Foo, wxListFoos, wxHashFoos); -#if WXWIN_COMPATIBILITY_2_4 -#include "wx/listimpl.cpp" -WX_DEFINE_LIST(wxListFoos) -#endif - void HashesTestCase::wxTypedHashTableTest() { // need a nested scope for destruction diff --git a/tests/uris/uris.cpp b/tests/uris/uris.cpp index 1f4a892843..8ea7438deb 100644 --- a/tests/uris/uris.cpp +++ b/tests/uris/uris.cpp @@ -358,9 +358,6 @@ void URITestCase::URLCompat() CPPUNIT_ASSERT( uricopy == url ); CPPUNIT_ASSERT( uricopy == urlcopy ); CPPUNIT_ASSERT( uricopy == uri ); -#if WXWIN_COMPATIBILITY_2_4 - CPPUNIT_ASSERT( wxURL::ConvertFromURI(wxT("%20%41%20")) == wxT(" A ") ); -#endif CPPUNIT_ASSERT( wxURI::Unescape(wxT("%20%41%20")) == wxT(" A ") ); wxURI test(wxT("file:\"myf\"ile.txt"));