]> git.saurik.com Git - wxWidgets.git/commitdiff
use GetSize() instead of deprecated StreamSize() in the examples
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 3 Jul 2003 09:56:57 +0000 (09:56 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 3 Jul 2003 09:56:57 +0000 (09:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21599 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/ftp.tex

index c8a7156205fe9814da8dc9d11fa3955b52a4041d..077787ba4e4d2b859050db8320c7916acf214a65 100644 (file)
@@ -44,7 +44,7 @@ Example of using wxFTP for file downloading:
     }
     else
     {
     }
     else
     {
-        size_t size = in->StreamSize();
+        size_t size = in->GetSize();
         char *data = new char[size];
         if ( !in->Read(data, size) )
         {
         char *data = new char[size];
         if ( !in->Read(data, size) )
         {
@@ -365,9 +365,9 @@ send new commands without reconnecting.
   ftp.ChDir("a_directory");
   in_stream = ftp.GetInputStream("a_file_to_get");
 
   ftp.ChDir("a_directory");
   in_stream = ftp.GetInputStream("a_file_to_get");
 
-  data = new char[in_stream->StreamSize()];
+  data = new char[in_stream->GetSize()];
 
 
-  in_stream->Read(data, in_stream->StreamSize());
+  in_stream->Read(data, in_stream->GetSize());
   if (in_stream->LastError() != wxStream_NOERROR) {
     // Do something.
   }
   if (in_stream->LastError() != wxStream_NOERROR) {
     // Do something.
   }