compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@21084 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-06-12 22:55:16 +00:00
parent e5125b7488
commit d7ace383ec

View File

@@ -49,7 +49,7 @@
*/ */
// what to test (in alphabetic order)? uncomment the line below to do all tests // what to test (in alphabetic order)? uncomment the line below to do all tests
//#define TEST_ALL #define TEST_ALL
#ifdef TEST_ALL #ifdef TEST_ALL
#define TEST_ARRAYS #define TEST_ARRAYS
#define TEST_CHARSET #define TEST_CHARSET
@@ -3171,7 +3171,7 @@ static void TestFtpWuFtpd()
} }
else else
{ {
size_t size = in->StreamSize(); size_t size = in->GetSize();
wxPrintf(_T("Reading file %s (%u bytes)..."), filename, size); wxPrintf(_T("Reading file %s (%u bytes)..."), filename, size);
wxChar *data = new wxChar[size]; wxChar *data = new wxChar[size];
@@ -3254,7 +3254,7 @@ static void TestFtpDownload()
} }
else else
{ {
size_t size = in->StreamSize(); size_t size = in->GetSize();
wxPrintf(_T("Reading file %s (%u bytes)..."), filename, size); wxPrintf(_T("Reading file %s (%u bytes)..."), filename, size);
fflush(stdout); fflush(stdout);