From 74008a4cd41669a0ae9729b4d0d09ae4da3b3b8b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 28 May 2000 22:09:19 +0000 Subject: [PATCH] corrected wxFile::Write() return type desc git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/file.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/latex/wx/file.tex b/docs/latex/wx/file.tex index c348256d25..0c13f3a1d4 100644 --- a/docs/latex/wx/file.tex +++ b/docs/latex/wx/file.tex @@ -261,7 +261,7 @@ error occurred. \membersection{wxFile::Write}\label{wxfilewrite} -\func{bool}{Write}{\param{const void*}{ buffer}, \param{off\_t}{ count}} +\func{size\_t}{Write}{\param{const void*}{ buffer}, \param{off\_t}{ count}} Writes the specified number of bytes from a buffer. @@ -273,7 +273,7 @@ Writes the specified number of bytes from a buffer. \wxheading{Return value} -TRUE if the operation was successful. +the number of bytes actually written \membersection{wxFile::Write}\label{wxfilewrites}