]> git.saurik.com Git - wxWidgets.git/commitdiff
typo in dir enum test code fixed
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 8 Jun 2002 18:30:27 +0000 (18:30 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 8 Jun 2002 18:30:27 +0000 (18:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15793 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/console/console.cpp

index a06dcab4bf8fd04174a56caa13dbe5f71f8eb2cf..c1e61a1bda473537b349b2635de4b5ebdb1ea503 100644 (file)
@@ -91,7 +91,7 @@
     #undef TEST_ALL
     static const bool TEST_ALL = TRUE;
 #else
-    #define TEST_THREADS
+    #define TEST_MIME
 
     static const bool TEST_ALL = FALSE;
 #endif
@@ -308,7 +308,7 @@ static void TestDirEnum()
     puts("*** Testing wxDir::GetFirst/GetNext ***");
 
     wxString cwd = wxGetCwd();
-    if ( wxDir::Exists(cwd) )
+    if ( !wxDir::Exists(cwd) )
     {
         printf("ERROR: current directory '%s' doesn't exist?\n", cwd.c_str());
         return;