]> git.saurik.com Git - wxWidgets.git/commitdiff
Cut out some duplicate symbol in datstrm.tex
authorGuilhem Lavaux <lavaux@easynet.fr>
Thu, 24 Feb 2000 18:52:31 +0000 (18:52 +0000)
committerGuilhem Lavaux <lavaux@easynet.fr>
Thu, 24 Feb 2000 18:52:31 +0000 (18:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6266 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/datstrm.tex

index f1adb8aed5b30887812feebab434e8c387fc1819..2a144b54db1ce9896126f5caafa5cbee0fc5970e 100644 (file)
@@ -93,7 +93,7 @@ Reads a double (IEEE encoded) from the stream.
 
 \membersection{wxDataInputStream::ReadString}
 
-\func{wxString}{wxDataInputStream::ReadString}{\void}
+\func{wxString}{ReadString}{\void}
 
 Reads a string from a stream. Actually, this function first reads a long integer
 specifying the length of the string (without the last null character) and then
@@ -152,31 +152,31 @@ little-endian order.
  
 \membersection{wxDataOutputStream::Write8}
 
-\func{void}{wxDataOutputStream::Write8}{{\param wxUint8 }{i8}}
+\func{void}{Write8}{{\param wxUint8 }{i8}}
 
 Writes the single byte {\it i8} to the stream.
 
 \membersection{wxDataOutputStream::Write16}
 
-\func{void}{wxDataOutputStream::Write16}{{\param wxUint16 }{i16}}
+\func{void}{Write16}{{\param wxUint16 }{i16}}
 
 Writes the 16 bit integer {\it i16} to the stream.
 
 \membersection{wxDataOutputStream::Write32}
 
-\func{void}{wxDataOutputStream::Write32}{{\param wxUint32 }{i32}}
+\func{void}{Write32}{{\param wxUint32 }{i32}}
 
 Writes the 32 bit integer {\it i32} to the stream.
 
 \membersection{wxDataOutputStream::WriteDouble}
 
-\func{void}{wxDataOutputStream::WriteDouble}{{\param double }{f}}
+\func{void}{WriteDouble}{{\param double }{f}}
 
 Writes the double {\it f} to the stream using the IEEE format.
 
 \membersection{wxDataOutputStream::WriteString}
 
-\func{void}{wxDataOutputStream::WriteString}{{\param const wxString\& }{string}}
+\func{void}{WriteString}{{\param const wxString\& }{string}}
 
 Writes {\it string} to the stream. Actually, this method writes the size of
 the string before writing {\it string} itself.