Warning fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35764 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2005-09-29 12:34:47 +00:00
parent f1cf725509
commit dab6fbae46

View File

@ -228,6 +228,8 @@ static void TestDirEnumHelper(wxDir& dir,
wxPuts(wxEmptyString);
}
#if TEST_ALL
static void TestDirEnum()
{
wxPuts(_T("*** Testing wxDir::GetFirst/GetNext ***"));
@ -283,6 +285,8 @@ static void TestDirEnum()
TestDirEnumHelper(dirNo);
}
#endif // TEST_ALL
class DirPrintTraverser : public wxDirTraverser
{
public:
@ -333,6 +337,8 @@ static void TestDirTraverse()
dir.Traverse(traverser, wxEmptyString, wxDIR_DIRS | wxDIR_HIDDEN);
}
#if TEST_ALL
static void TestDirExists()
{
wxPuts(_T("*** Testing wxDir::Exists() ***"));
@ -366,6 +372,8 @@ static void TestDirExists()
}
}
#endif // TEST_ALL
#endif // TEST_DIR
// ----------------------------------------------------------------------------
@ -4385,4 +4393,3 @@ int main(int argc, char **argv)
wxUnusedVar(argv);
return 0;
}