]> git.saurik.com Git - wxWidgets.git/commitdiff
Warning fix
authorWłodzimierz Skiba <abx@abx.art.pl>
Mon, 12 Jul 2004 19:21:48 +0000 (19:21 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Mon, 12 Jul 2004 19:21:48 +0000 (19:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28214 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/console/console.cpp

index 76c7cef46ae1340c63618e49075fb56b788d5e61..fd27e29a1b6f4d59cc2eb18c9a94ebd75fbb1f2f 100644 (file)
@@ -3761,6 +3761,9 @@ static void TestZipFileSystem()
 #include "wx/datetime.h"
 
 // this test miscellaneous static wxDateTime functions
+
+#if TEST_ALL
+
 static void TestTimeStatic()
 {
     wxPuts(_T("\n*** wxDateTime static methods test ***"));
@@ -3839,6 +3842,10 @@ static void TestTimeDST()
     }
 }
 
+#endif // TEST_ALL
+
+#if TEST_INTERACTIVE
+
 static void TestDateTimeInteractive()
 {
     wxPuts(_T("\n*** interactive wxDateTime tests ***"));
@@ -3878,6 +3885,10 @@ static void TestDateTimeInteractive()
     wxPuts(_T("\n*** done ***"));
 }
 
+#endif // TEST_INTERACTIVE
+
+#if TEST_ALL
+
 static void TestTimeMS()
 {
     wxPuts(_T("*** testing millisecond-resolution support in wxDateTime ***"));
@@ -3979,6 +3990,8 @@ static void TestTimeSpanFormat()
     wxPuts(wxEmptyString);
 }
 
+#endif // TEST_ALL
+
 #endif // TEST_DATETIME
 
 // ----------------------------------------------------------------------------