Warning fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28214 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-07-12 19:21:48 +00:00
parent 23866d595f
commit 4b586201d3

View File

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