Remove MSVC6 support.
Don't support this compiler any more, this allows to get rid of tons of MSVC6-specific workarounds, in particular we can now use Bind() and natural template functions calls in the library code. Also remove MSVC6 project and solution files and don't generate them when bakefile_gen is ran any more (removing the remaining occurrences of msvc6prj from the bakefiles results in weird bake-time errors, so it's simpler to just leave them there). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76532 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -154,8 +154,7 @@ public:
|
||||
// just to be really sure we know what we remove
|
||||
CPPUNIT_ASSERT_EQUAL( "fswatcher_test", dir.GetDirs().Last() );
|
||||
|
||||
// FIXME-VC6: using non-static Rmdir() results in ICE
|
||||
CPPUNIT_ASSERT( wxFileName::Rmdir(dir.GetFullPath(), wxPATH_RMDIR_RECURSIVE) );
|
||||
CPPUNIT_ASSERT( dir.Rmdir(wxPATH_RMDIR_RECURSIVE) );
|
||||
}
|
||||
|
||||
static wxFileName RandomName(const wxFileName& base, int length = 10)
|
||||
@@ -420,9 +419,7 @@ private:
|
||||
CPPUNIT_TEST_SUITE( FileSystemWatcherTestCase );
|
||||
CPPUNIT_TEST( TestEventCreate );
|
||||
CPPUNIT_TEST( TestEventDelete );
|
||||
#if !defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(7)
|
||||
CPPUNIT_TEST( TestTrees );
|
||||
#endif
|
||||
|
||||
// kqueue-based implementation doesn't collapse create/delete pairs in
|
||||
// renames and doesn't detect neither modifications nor access to the
|
||||
@@ -456,9 +453,7 @@ private:
|
||||
void TestEventAttribute();
|
||||
void TestSingleWatchtypeEvent();
|
||||
#endif // wxHAS_INOTIFY
|
||||
#if !defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(7)
|
||||
void TestTrees(); // Visual C++ 6 can't build this
|
||||
#endif
|
||||
void TestTrees();
|
||||
void TestNoEventsAfterRemove();
|
||||
|
||||
DECLARE_NO_COPY_CLASS(FileSystemWatcherTestCase)
|
||||
@@ -720,7 +715,6 @@ void FileSystemWatcherTestCase::TestSingleWatchtypeEvent()
|
||||
// TestTrees
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
#if !defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(7)
|
||||
void FileSystemWatcherTestCase::TestTrees()
|
||||
{
|
||||
class TreeTester : public EventHandler
|
||||
@@ -951,7 +945,6 @@ void FileSystemWatcherTestCase::TestTrees()
|
||||
TreeTester tester;
|
||||
tester.Run();
|
||||
}
|
||||
#endif // !defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(7)
|
||||
|
||||
|
||||
namespace
|
||||
|
Reference in New Issue
Block a user