]> git.saurik.com Git - wxWidgets.git/commitdiff
Corrected some .tex problems
authorJulian Smart <julian@anthemion.co.uk>
Thu, 25 Feb 1999 15:07:00 +0000 (15:07 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 25 Feb 1999 15:07:00 +0000 (15:07 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1792 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/classes.tex
docs/latex/wx/datstrm.tex
docs/latex/wx/ftp.tex
docs/latex/wx/inputstr.tex
docs/latex/wx/outptstr.tex
docs/latex/wx/strmbase.tex
docs/latex/wx/topics.tex
docs/latex/wx/tstring.tex
docs/latex/wx/window.tex
docs/latex/wx/wxstring.tex

index 62c531d4ff7c799f363e25724b6092b571c0d581..f54db8af7826b077b3140b596b3f0a5b08b80c59 100644 (file)
@@ -2,30 +2,6 @@
 \setheader{{\it CHAPTER \thechapter}}{}{}{}{}{{\it CHAPTER \thechapter}}%
 \setfooter{\thepage}{}{}{}{}{\thepage}%
 \pagenumbering{arabic}%
 \setheader{{\it CHAPTER \thechapter}}{}{}{}{}{{\it CHAPTER \thechapter}}%
 \setfooter{\thepage}{}{}{}{}{\thepage}%
 \pagenumbering{arabic}%
-%
-\begin{comment}
-\helpignore{\section{Class hierarchy}%
-
-The GUI-specific wxWindows class hierarchy is shown in Figure 5.1.
-Many other, non-GUI classes have been omitted.
-
-\vskip 1cm
-$$\image{14cm;0cm}{wxclass.ps}$$
-\vskip 1cm
-\centerline{Figure 5.1: wxWindows class hierarchy}
-
-\newpage}%
-
-\overview{Writing a wxWindows application: a rough guide}{roughguide}
-
-\helponly{
-\sethotspotcolour{off}%
-\large{
-\helpref{Notes on using the reference}{referencenotes}\\
-\helpref{Guide to functions}{functions}
-\sethotspotcolour{on}%
-}}
-\end{comment}
 
 \input accel.tex
 \input activevt.tex
 
 \input accel.tex
 \input activevt.tex
@@ -190,26 +166,26 @@ $$\image{14cm;0cm}{wxclass.ps}$$
 \input statbox.tex
 \input stattext.tex
 \input statusbr.tex
 \input statbox.tex
 \input stattext.tex
 \input statusbr.tex
+\input strmbase.tex
+\input stream.tex
 \input wxstring.tex
 \input strlist.tex
 \input tokenizr.tex
 \input wxstring.tex
 \input strlist.tex
 \input tokenizr.tex
-\input strmbase.tex
-\input stream.tex
 \input sysclevt.tex
 \input settings.tex
 \input tab.tex
 \input tabctrl.tex
 \input tabevent.tex
 \input taskbar.tex
 \input sysclevt.tex
 \input settings.tex
 \input tab.tex
 \input tabctrl.tex
 \input tabevent.tex
 \input taskbar.tex
+\input tcpclint.tex
+\input tcpconn.tex
+\input tcpservr.tex
 \input tempfile.tex
 \input text.tex
 \input txtdatob.tex
 \input textdlg.tex
 \input txtdrptg.tex
 \input valtext.tex
 \input tempfile.tex
 \input text.tex
 \input txtdatob.tex
 \input textdlg.tex
 \input txtdrptg.tex
 \input valtext.tex
-\input tcpclint.tex
-\input tcpconn.tex
-\input tcpservr.tex
 \input textfile.tex
 \input thread.tex
 \input time.tex
 \input textfile.tex
 \input thread.tex
 \input time.tex
index fffa327d041bfee305f818ff7cbda9cff62e3e4d..daafad94922b09e15b38da2a9040104559b24251 100644 (file)
@@ -57,6 +57,12 @@ Reads a 32 bit integer from the stream.
 
 Reads a double (IEEE encoded) from the stream.
 
 
 Reads a double (IEEE encoded) from the stream.
 
+\membersection{wxDataInputStream::ReadLine}
+
+\func{wxString}{wxDataInputStream::ReadLine}{\void}
+
+Reads a line from the stream. A line is a string which ends with \\n or \\r\\n.
+
 \membersection{wxDataInputStream::ReadString}
 
 \func{wxString}{wxDataInputStream::ReadString}{\void}
 \membersection{wxDataInputStream::ReadString}
 
 \func{wxString}{wxDataInputStream::ReadString}{\void}
@@ -65,12 +71,6 @@ 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
 reads the string.
 
 specifying the length of the string (without the last null character) and then
 reads the string.
 
-\membersection{wxDataInputStream::ReadLine}
-
-\func{wxString}{wxDataInputStream::ReadLine}{\void}
-
-Reads a line from the stream. A line is a string which ends with \\n or \\r\\n.
-
 \section{\class{wxDataOutputStream}}\label{wxdataoutputstream}
 
 This class provides functions that write data types in a
 \section{\class{wxDataOutputStream}}\label{wxdataoutputstream}
 
 This class provides functions that write data types in a
@@ -120,13 +120,6 @@ Writes the 32 bit integer {\it i32} to the stream.
 
 Writes the double {\it f} to the stream using the IEEE format.
 
 
 Writes the double {\it f} to the stream using the IEEE format.
 
-\membersection{wxDataOutputStream::WriteString}
-
-\func{void}{wxDataOutputStream::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.
-
 \membersection{wxDataOutputStream::WriteLine}
 
 \func{void}{wxDataOutputStream::WriteLine}{{\param const wxString\& }{string}}
 \membersection{wxDataOutputStream::WriteLine}
 
 \func{void}{wxDataOutputStream::WriteLine}{{\param const wxString\& }{string}}
@@ -134,3 +127,10 @@ the string before writing {\it string} itself.
 Writes {\it string} as a line. Depending on the operating system, it adds
 $\backslash$n or $\backslash$r$\backslash$n.
 
 Writes {\it string} as a line. Depending on the operating system, it adds
 $\backslash$n or $\backslash$r$\backslash$n.
 
+\membersection{wxDataOutputStream::WriteString}
+
+\func{void}{wxDataOutputStream::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.
+
index c484054d96f039878327aa2a66ccf7a22aa22572..2b8b6c5ec661c6efddebdaf3801f32b9ef1088ea 100644 (file)
@@ -44,21 +44,21 @@ Returns the last command result.
 \func{bool}{ChDir}{\param{const wxString\&}{ dir}}
 
 Change the current FTP working directory.
 \func{bool}{ChDir}{\param{const wxString\&}{ dir}}
 
 Change the current FTP working directory.
-Returns TRUE, if successful.
+Returns TRUE if successful.
 
 \membersection{wxFTP::MkDir}
 
 \func{bool}{MkDir}{\param{const wxString\&}{ dir}}
 
 Create the specified directory in the current FTP working directory.
 
 \membersection{wxFTP::MkDir}
 
 \func{bool}{MkDir}{\param{const wxString\&}{ dir}}
 
 Create the specified directory in the current FTP working directory.
-Returns TRUE, if successful.
+Returns TRUE if successful.
 
 \membersection{wxFTP::RmDir}
 
 \func{bool}{RmDir}{\param{const wxString\&}{ dir}}
 
 Remove the specified directory from the current FTP working directory.
 
 \membersection{wxFTP::RmDir}
 
 \func{bool}{RmDir}{\param{const wxString\&}{ dir}}
 
 Remove the specified directory from the current FTP working directory.
-Returns TRUE, if successful.
+Returns TRUE if successful.
 
 \membersection{wxFTP::Pwd}
 
 
 \membersection{wxFTP::Pwd}
 
@@ -72,8 +72,7 @@ Returns the current FTP working directory.
 
 \func{bool}{Rename}{\param{const wxString\&}{ src}, \param{const wxString\&}{ dst}}
 
 
 \func{bool}{Rename}{\param{const wxString\&}{ src}, \param{const wxString\&}{ dst}}
 
-Rename the specified \it{src} element into \it{dst}
-Returns TRUE, if successful.
+Rename the specified \it{src} element to \it{dst}. Returns TRUE if successful.
 
 % ----------------------------------------------------------------------------
 
 
 % ----------------------------------------------------------------------------
 
@@ -81,8 +80,7 @@ Returns TRUE, if successful.
 
 \func{bool}{RmFile}{\param{const wxString\&}{ path}}
 
 
 \func{bool}{RmFile}{\param{const wxString\&}{ path}}
 
-Delete the file specified by \it{path}.
-Returns TRUE, if successful.
+Delete the file specified by \it{path}. Returns TRUE if successful.
 
 % ----------------------------------------------------------------------------
 
 
 % ----------------------------------------------------------------------------
 
index ae346a3178ee91909064de5195d2ccc496c8772d..ec8d55353f0d727ec26cca0cec9ebaf601837e69 100644 (file)
@@ -35,24 +35,33 @@ stream buffer can point to another stream.
 
 Destructor.
 
 
 Destructor.
 
-% -----------
-% IO function
-% -----------
-\membersection{wxInputStream::Peek}
-
-\func{char}{Peek}{\void}
-
-Returns the first character in the input queue without removing it.
-
 \membersection{wxInputStream::GetC}
 
 \func{char}{GetC}{\void}
 
 Returns the first character in the input queue and removes it.
 
 \membersection{wxInputStream::GetC}
 
 \func{char}{GetC}{\void}
 
 Returns the first character in the input queue and removes it.
 
+\membersection{wxInputStream::InputStreamBuffer}
+
+\func{wxStreamBuffer*}{InputStreamBuffer}{\void}
+
+Returns the stream buffer associated with the input stream.
+
+\membersection{wxInputStream::LastRead}
+
+\constfunc{size\_t}{LastRead}{\void}
+
+Returns the last number of bytes read.
+
+\membersection{wxInputStream::Peek}
+
+\func{char}{Peek}{\void}
+
+Returns the first character in the input queue without removing it.
+
 \membersection{wxInputStream::Read}
 
 \membersection{wxInputStream::Read}
 
-\func{wxInputStream\&}{Read}{\param{void *}{buffer}, \param{size_t}{ size}}
+\func{wxInputStream\&}{Read}{\param{void *}{buffer}, \param{size\_t}{ size}}
 
 Reads the specified amount of bytes and stores the data in \it{buffer}.
 
 
 Reads the specified amount of bytes and stores the data in \it{buffer}.
 
@@ -75,33 +84,15 @@ The data is read until an error is raised by one of the two streams.
 This function returns a reference on the current object, so the user can test
 any states of the stream right away.
 
 This function returns a reference on the current object, so the user can test
 any states of the stream right away.
 
-% ------------------
-% Position functions
-% ------------------
 \membersection{wxInputStream::SeekI}
 
 \membersection{wxInputStream::SeekI}
 
-\func{off_t}{SeekI}{\param{off_t}{ pos}, \param{wxSeekMode}{ mode = wxFromStart}}
+\func{off\_t}{SeekI}{\param{off\_t}{ pos}, \param{wxSeekMode}{ mode = wxFromStart}}
 
 Changes the stream current position.
 
 \membersection{wxInputStream::TellI}
 
 
 Changes the stream current position.
 
 \membersection{wxInputStream::TellI}
 
-\constfunc{off_t}{TellI}{\void}
+\constfunc{off\_t}{TellI}{\void}
 
 Returns the current stream position.
 
 
 Returns the current stream position.
 
-% ---------------
-% State functions
-% ---------------
-\membersection{wxInputStream::InputStreamBuffer}
-
-\func{wxStreamBuffer*}{InputStreamBuffer}{\void}
-
-Returns the stream buffer associated with the input stream.
-
-\membersection{wxInputStream::LastRead}
-
-\constfunc{size_t}{LastRead}{\void}
-
-Returns the last number of bytes read.
-
index eae660ae4241fa08f217f4605769d960b789ad47..543c3e4b53a844a0051f4788a391c437cb42614c 100644 (file)
@@ -35,35 +35,23 @@ stream buffer can point to another stream.
 
 Destructor.
 
 
 Destructor.
 
-% -----------
-% IO function
-% -----------
-\membersection{wxOutputStream::PutC}
-
-\func{void}{PutC}{\param{char}{ c}}
+\membersection{wxOutputStream::OutputStreamBuffer}
 
 
-Puts the specified character in the output queue and increments the
-stream position.
+\func{wxStreamBuffer *}{OutputStreamBuffer}{\void}
 
 
-\membersection{wxOutputStream::Write}
+Returns the stream buffer associated with the output stream.
 
 
-\func{wxOutputStream\&}{Write}{\param{const void *}{buffer}, \param{size_t}{ size}}
+\membersection{wxOutputStream::LastWrite}
 
 
-Writes the specified amount of bytes using the data of \it{buffer}. 
-\it{WARNING!} The buffer absolutely needs to have at least the specified size.
+\constfunc{size_t}{LastWrite}{\void}
 
 
-This function returns a reference on the current object, so the user can test
-any states of the stream right away.
+\membersection{wxOutputStream::PutC}
 
 
-\func{wxOutputStream\&}{Write}{\param{wxInputStream\&}{ stream_in}}
+\func{void}{PutC}{\param{char}{ c}}
 
 
-Reads data from the specified input stream and stores them 
-in the current stream. The data is read until an error is raised
-by one of the two streams.
+Puts the specified character in the output queue and increments the
+stream position.
 
 
-% ------------------
-% Position functions
-% ------------------
 \membersection{wxOutputStream::SeekO}
 
 \func{off_t}{SeekO}{\param{off_t}{ pos}, \param{wxSeekMode}{ mode}}
 \membersection{wxOutputStream::SeekO}
 
 \func{off_t}{SeekO}{\param{off_t}{ pos}, \param{wxSeekMode}{ mode}}
@@ -76,16 +64,19 @@ Changes the stream current position.
 
 Returns the current stream position.
 
 
 Returns the current stream position.
 
-% ---------------
-% State functions
-% ---------------
-\membersection{wxOutputStream::OutputStreamBuffer}
+\membersection{wxOutputStream::Write}
 
 
-\func{wxStreamBuffer *}{OutputStreamBuffer}{\void}
+\func{wxOutputStream\&}{Write}{\param{const void *}{buffer}, \param{size_t}{ size}}
 
 
-Returns the stream buffer associated with the output stream.
+Writes the specified amount of bytes using the data of \it{buffer}. 
+\it{WARNING!} The buffer absolutely needs to have at least the specified size.
 
 
-\membersection{wxOutputStream::LastWrite}
+This function returns a reference on the current object, so the user can test
+any states of the stream right away.
 
 
-\constfunc{size_t}{LastWrite}{\void}
+\func{wxOutputStream\&}{Write}{\param{wxInputStream\&}{ stream_in}}
+
+Reads data from the specified input stream and stores them 
+in the current stream. The data is read until an error is raised
+by one of the two streams.
 
 
index b04bcdd83b5eb10d0e6e889f93e30f099b9170d7..368252e9a7d9d01d864e279032b2f7270201f880 100644 (file)
@@ -49,44 +49,46 @@ This function returns the last error.
 \twocolitem{{\bf wxStream_READ_ERR}}{A generic error occured on the last read call.}
 \end{twocollist}
 
 \twocolitem{{\bf wxStream_READ_ERR}}{A generic error occured on the last read call.}
 \end{twocollist}
 
-\membersection{wxStreamBase::StreamSize}
-\constfunc{size_t}{StreamSize}{\void}
-
-This function returns the size of the stream. For example, for a file it is the size of
-the file).
-
-\wxheading{Warning}
-
-There are streams which do not have size by definition, such as socket streams.
-In that cases, StreamSize returns an invalid size represented by
-\begin{verbatim}
-~(size_t)0
-\end{verbatim}
-
 \membersection{wxStreamBase::OnSysRead}\label{wxstreambaseonsysread}
 
 \membersection{wxStreamBase::OnSysRead}\label{wxstreambaseonsysread}
 
-\func{size_t}{OnSysRead}{\param{void*}{ buffer}, \param{size_t}{ bufsize}}
+\func{size\_t}{OnSysRead}{\param{void*}{ buffer}, \param{size\_t}{ bufsize}}
 
 Internal function. It is called when the stream buffer needs a buffer of the
 specified size. It should return the size that was actually read.
 
 
 Internal function. It is called when the stream buffer needs a buffer of the
 specified size. It should return the size that was actually read.
 
-\membersection{wxStreamBase::OnSysWrite}
-
-\func{size_t}{OnSysWrite}{\param{void *}{buffer}, \param{size_t}{ bufsize}}
-
-See \helpref{OnSysRead}{wxstreambaseonsysread}.
-
 \membersection{wxStreamBase::OnSysSeek}
 
 \membersection{wxStreamBase::OnSysSeek}
 
-\func{off_t}{OnSysSeek}{\param{off_t}{ pos}, \param{wxSeekMode}{ mode}}
+\func{off\_t}{OnSysSeek}{\param{off\_t}{ pos}, \param{wxSeekMode}{ mode}}
 
 Internal function. It is called when the stream buffer needs to change the
 current position in the stream. See \helpref{wxStreamBuffer::Seek}{wxstreambufferseek}
 
 \membersection{wxStreamBase::OnSysTell}
 
 
 Internal function. It is called when the stream buffer needs to change the
 current position in the stream. See \helpref{wxStreamBuffer::Seek}{wxstreambufferseek}
 
 \membersection{wxStreamBase::OnSysTell}
 
-\constfunc{off_t}{OnSysTell}{\void}
+\constfunc{off\_t}{OnSysTell}{\void}
 
 Internal function. Is is called when the stream buffer needs to know the
 real position in the stream.
 
 
 Internal function. Is is called when the stream buffer needs to know the
 real position in the stream.
 
+\membersection{wxStreamBase::OnSysWrite}
+
+\func{size\_t}{OnSysWrite}{\param{void *}{buffer}, \param{size\_t}{ bufsize}}
+
+See \helpref{OnSysRead}{wxstreambaseonsysread}.
+
+\membersection{wxStreamBase::StreamSize}
+
+\constfunc{size\_t}{StreamSize}{\void}
+
+This function returns the size of the stream. For example, for a file it is the size of
+the file).
+
+\wxheading{Warning}
+
+There are streams which do not have size by definition, such as socket streams.
+In that cases, StreamSize returns an invalid size represented by
+
+\begin{verbatim}
+~(size_t)0
+\end{verbatim}
+
index cda8c6764de7b68efbcc2fcaf100f62ee8ea43ea..34e732058bcc3668880d9f0d7b23791d417126b8 100644 (file)
@@ -35,7 +35,7 @@ This chapter contains a selection of topic overviews.
 \input tvalidat.tex
 \input texpr.tex
 \input tgrid.tex
 \input tvalidat.tex
 \input texpr.tex
 \input tgrid.tex
-\input tstring.tex
+%\input tstring.tex
 \input tdnd.tex
 \input tthreads.tex
 \input tfile.tex
 \input tdnd.tex
 \input tthreads.tex
 \input tfile.tex
index 52bbe3af9e545cb8faa6487bf645de2ab2b0fbba..c61fb03e3ce81d47e7b80cbcbe9b3d1a70e481b5 100644 (file)
@@ -33,34 +33,34 @@ finally, C++ even has one (std::string) in standard. Why use wxString then?
 There are several advantages:
 
 \begin{enumerate}\itemsep=0pt
 There are several advantages:
 
 \begin{enumerate}\itemsep=0pt
-\item {\bf Efficiency} {This class was made to be as efficient as possible: both
+\item {\bf Efficiency} This class was made to be as efficient as possible: both
 in terms of size (each wxString objects takes exactly the same place as {\it
 char *} pointer, \helpref{reference counting}{wxstringrefcount}) and speed.
 It also provides performance \helpref{statistics gathering code}{wxstringtuning} 
 which may be enabled to fine tune the memory allocation strategy for your
 in terms of size (each wxString objects takes exactly the same place as {\it
 char *} pointer, \helpref{reference counting}{wxstringrefcount}) and speed.
 It also provides performance \helpref{statistics gathering code}{wxstringtuning} 
 which may be enabled to fine tune the memory allocation strategy for your
-particular application - and the gain might be quite big.}
-\item {\bf Compatibility} {This class tries to combine almost full compatibility
+particular application - and the gain might be quite big.
+\item {\bf Compatibility} This class tries to combine almost full compatibility
 with the old wxWindows 1.xx wxString class, some reminiscence to MFC CString
 with the old wxWindows 1.xx wxString class, some reminiscence to MFC CString
-class and 90\% of functionality of std::string class.}
-\item {\bf Rich set of functions} {Some of the functions present in wxString are
+class and 90\% of functionality of std::string class.
+\item {\bf Rich set of functions} Some of the functions present in wxString are
 very useful but don't exist in most of other string classes: for example, 
 \helpref{AfterFirst}{wxstringafterfirst}, 
 \helpref{BeforLast}{wxstringbeforlast}, \helpref{operator<<}{wxstringoperator} 
 or \helpref{Printf}{wxstringprintf}. Of course, all the standard string
 very useful but don't exist in most of other string classes: for example, 
 \helpref{AfterFirst}{wxstringafterfirst}, 
 \helpref{BeforLast}{wxstringbeforlast}, \helpref{operator<<}{wxstringoperator} 
 or \helpref{Printf}{wxstringprintf}. Of course, all the standard string
-operations are supported as well.}
-\item {\bf UNICODE} {In this release, wxString only supports construction from
+operations are supported as well.
+\item {\bf UNICODE} In this release, wxString only supports construction from
 an UNICODE string, but in the next one it will be capable of also storing its
 an UNICODE string, but in the next one it will be capable of also storing its
-internal data in either ASCII or UNICODE format.}
-\item {\bf Used by wxWindows} {And, of course, this class is used everywhere
+internal data in either ASCII or UNICODE format.
+\item {\bf Used by wxWindows} And, of course, this class is used everywhere
 inside wxWindows so there is no performance loss which would result from
 conversions of objects of any other string class (including std::string) to
 inside wxWindows so there is no performance loss which would result from
 conversions of objects of any other string class (including std::string) to
-wxString internally by wxWindows.}
+wxString internally by wxWindows.
 \end{enumerate}
 
 However, there are several problems as well. The most important one is probably
 that there are often several functions to do exactly the same thing: for
 example, to get the length of the string either one of 
 \end{enumerate}
 
 However, there are several problems as well. The most important one is probably
 that there are often several functions to do exactly the same thing: for
 example, to get the length of the string either one of 
-\helpref{length()}{wxstringlength}, \helpref{Len()}{wxstringlen} or
+\helpref{length()}{wxstringlength}, \helpref{Len()}{wxstringlen} or 
 \helpref{Length()}{wxstringLength} may be used. The first function, as almost
 all the other functions in lowercase, is std::string compatible. The second one
 is "native" wxString version and the last one is wxWindows 1.xx way. So the
 \helpref{Length()}{wxstringLength} may be used. The first function, as almost
 all the other functions in lowercase, is std::string compatible. The second one
 is "native" wxString version and the last one is wxWindows 1.xx way. So the
@@ -77,15 +77,14 @@ In the situations when there is no correspondinw std::string function, please
 try to use the new wxString methods and not the old wxWindows 1.xx variants
 which are deprecated and risk to disappear in future versions.
 
 try to use the new wxString methods and not the old wxWindows 1.xx variants
 which are deprecated and risk to disappear in future versions.
 
-\subsection{Some advices about using wxString}\label{wxstringadvices}
+\subsection{Some advice about using wxString}\label{wxstringadvices}
 
 
-Probably main trap with using this class is the implicit conversion operator to
+Probably the main trap with using this class is the implicit conversion operator to 
 {\it const char *}. It is advised that you use \helpref{c\_str()}{wxstringcstr}
 instead of it to clearly indicate when the conversion is done. Specifically, the
 danger of this implicit conversion may be seen in the following code fragment:
 
 \begin{verbatim}
 {\it const char *}. It is advised that you use \helpref{c\_str()}{wxstringcstr}
 instead of it to clearly indicate when the conversion is done. Specifically, the
 danger of this implicit conversion may be seen in the following code fragment:
 
 \begin{verbatim}
-
 // this function converts the input string to uppercase, output it to the screen
 // and returns the result
 const char *SayHELLO(const wxString& input)
 // this function converts the input string to uppercase, output it to the screen
 // and returns the result
 const char *SayHELLO(const wxString& input)
@@ -96,19 +95,18 @@ const char *SayHELLO(const wxString& input)
 
     return output;
 }
 
     return output;
 }
-
 \end{verbatim}
 
 \end{verbatim}
 
-There are two nasty bugs in these three lines. First of them is in the call to
+There are two nasty bugs in these three lines. First of them is in the call to the 
 {\it printf()} function. Although the implicit conversion to C strings is applied
 {\it printf()} function. Although the implicit conversion to C strings is applied
-automatically by the compiler in case of
+automatically by the compiler in the case of
 
 \begin{verbatim}
     puts(output);
 \end{verbatim}
 
 
 \begin{verbatim}
     puts(output);
 \end{verbatim}
 
-because the argument of {\it puts()} is known to be of the type {\it const char
-*}, this is {\bf not} done for {\it printf()} which is a function with variable
+because the argument of {\it puts()} is known to be of the type {\it const char *},
+this is {\bf not} done for {\it printf()} which is a function with variable
 number of arguments (and whose arguments are of unknown types). So this call may
 do anything at all (including displaying the correct string on screen), although
 the most likely result is a program crash. The solution is to use 
 number of arguments (and whose arguments are of unknown types). So this call may
 do anything at all (including displaying the correct string on screen), although
 the most likely result is a program crash. The solution is to use 
@@ -139,7 +137,7 @@ intuitive behaviour (like strncpy() which doesn't always terminate the resulting
 string with a NUL) and are in general not very safe (passing NULL to them will
 probably lead to program crash). Moreover, some of very useful functions are not
 standard at all. This is why in addition to all wxString functions, there are
 string with a NUL) and are in general not very safe (passing NULL to them will
 probably lead to program crash). Moreover, some of very useful functions are not
 standard at all. This is why in addition to all wxString functions, there are
-also a few of global string functions which try to correct these problems:
+also a few of global string functions which try to correct these problems: 
 \helpref{IsEmpty()}{isempty} verifies whether the string is empty (returning
 TRUE for NULL pointers), \helpref{Strlen()}{strlen} also handles NULLs correctly
 and returns 0 for them and \helpref{Stricmp()}{stricmp} is just a
 \helpref{IsEmpty()}{isempty} verifies whether the string is empty (returning
 TRUE for NULL pointers), \helpref{Strlen()}{strlen} also handles NULLs correctly
 and returns 0 for them and \helpref{Stricmp()}{stricmp} is just a
@@ -148,13 +146,13 @@ known either as stricmp() or strcasecmp() on different platforms.
 
 There is another class which might be useful when working with wxString: 
 \helpref{wxStringTokenizer}{wxstringtokenizer}. It is helpful when a string must
 
 There is another class which might be useful when working with wxString: 
 \helpref{wxStringTokenizer}{wxstringtokenizer}. It is helpful when a string must
-be broken into tokens and replaces advatageously the standard C library {\it
+be broken into tokens and replaces the standard C library {\it
 strtok()} function.
 
 And the very last string related class is \helpref{wxArrayString}{wxarray}: it
 strtok()} function.
 
 And the very last string related class is \helpref{wxArrayString}{wxarray}: it
-is just a version of "template" dynamic array class which is specialized to work
+is just a version of the "template" dynamic array class which is specialized to work
 with strings. Please note that this class is specially optimized (it uses its
 with strings. Please note that this class is specially optimized (it uses its
-knowledge of internal structure of wxString) for storing strigns and so it is
+knowledge of internal structure of wxString) for storing strings and so it is
 vastly better from performance point of view than wxObjectArray of wxString.
 
 \subsection{Reference counting and why you shouldn't care about it}\label{wxstringrefcount}
 vastly better from performance point of view than wxObjectArray of wxString.
 
 \subsection{Reference counting and why you shouldn't care about it}\label{wxstringrefcount}
@@ -189,7 +187,7 @@ of array subscript operator for this reasons. Please note that
 \helpref{at()}{wxstringat} method has the same problem as subscript operator in
 this situation and so using it is not really better. Also note that if all
 string arguments to your functions are passed as {\it const wxString\&} (see the
 \helpref{at()}{wxstringat} method has the same problem as subscript operator in
 this situation and so using it is not really better. Also note that if all
 string arguments to your functions are passed as {\it const wxString\&} (see the
-section \helpref{Some advices}{wxstringadvices}) this situation will almost
+section \helpref{Some advice}{wxstringadvices}) this situation will almost
 never arise because for constant references the correct operator is called automatically.
 
 \subsection{Tuning wxString for your application}\label{wxstringtuning}
 never arise because for constant references the correct operator is called automatically.
 
 \subsection{Tuning wxString for your application}\label{wxstringtuning}
@@ -207,7 +205,6 @@ expensive operation) too often as when, for example, a string is constructed by
 subsequently adding one character at a time to it, as for example in:
 
 \begin{verbatim}
 subsequently adding one character at a time to it, as for example in:
 
 \begin{verbatim}
-
 // delete all vowels from the string
 wxString DeleteAllVowels(const wxString& original)
 {
 // delete all vowels from the string
 wxString DeleteAllVowels(const wxString& original)
 {
@@ -222,10 +219,9 @@ wxString DeleteAllVowels(const wxString& original)
 
     return result;
 }
 
     return result;
 }
-
 \end{verbatim}
 
 \end{verbatim}
 
-This is a quite common situation and not allocating extra memory at all would
+This is quite a common situation and not allocating extra memory at all would
 lead to very bad performance in this case because there would be as many memory
 (re)allocations as there are consonants in the original string. Allocating too
 much extra memory would help to improve the speed in this situation, but due to
 lead to very bad performance in this case because there would be as many memory
 (re)allocations as there are consonants in the original string. Allocating too
 much extra memory would help to improve the speed in this situation, but due to
index 6c371edf252cbaf63d0d13588660f7ffdb1dd753..a3fa5ac589d94b05af058e8f90b14287b46d1ebd 100644 (file)
@@ -1683,14 +1683,12 @@ Sets the window's cursor.
 
 \docparam{cursor}{Specifies the cursor that the window should normally display.}
 
 
 \docparam{cursor}{Specifies the cursor that the window should normally display.}
 
-\begin{comment}
-\wxheading{Remarks}
-
-Under Windows, you sometimes need to call ::wxSetCursor in addition to this
-function if you want the cursor to change immediately, because under Windows,
-wxWindows only sets the global cursor when it detects mouse movement.
-\end{comment
-
+%\wxheading{Remarks}
+%
+%Under Windows, you sometimes need to call ::wxSetCursor in addition to this
+%function if you want the cursor to change immediately, because under Windows,
+%wxWindows only sets the global cursor when it detects mouse movement.
+%
 \wxheading{See also}
 
 \helpref{::wxSetCursor}{wxsetcursor}, \helpref{wxCursor}{wxcursor}
 \wxheading{See also}
 
 \helpref{::wxSetCursor}{wxsetcursor}, \helpref{wxCursor}{wxcursor}
index a70122b4eabb5f35db8cfa8ef8c4b6ab16cef933..3b06d4fecf2e90de4e170fa85afddda26fd57c37 100644 (file)
@@ -1,10 +1,10 @@
 \section{\class{wxString}}\label{wxstring}
 
 \section{\class{wxString}}\label{wxstring}
 
-wxString is a class representing a character string. Please see wxString 
-\helpref{overview}{wxstringoverview} for more information about it. As explained
-there, wxStrign implements about 90\% of methods of std::string class (iterators
-are not supported and so all methods which use them are not supported neither),
-but they are not documented here - please see any source of STL documentation.
+wxString is a class representing a character string. Please see the 
+\helpref{wxString overview}{wxstringoverview} for more information about it. As explained
+there, wxString implements about 90\% of methods of the std::string class (iterators
+are not supported, nor all methods which use them).
+These standard functions are not documented in this manual so please see the STL documentation.
 The behaviour of all these functions is identical to the behaviour described
 there.
 
 The behaviour of all these functions is identical to the behaviour described
 there.
 
@@ -126,7 +126,7 @@ lower case and leave the original string unchanged.
 
 \membersection{Searching and replacing}
 
 
 \membersection{Searching and replacing}
 
-These functions replace the standard {\it strchr()} and {\it strstr()}
+These functions replace the standard {\it strchr()} and {\it strstr()} 
 functions.
 
 \helpref{Find}{wxstringfind}\\
 functions.
 
 \helpref{Find}{wxstringfind}\\
@@ -139,7 +139,7 @@ insertion operators exist (for basic types only).
 
 \helpref{Printf}{wxstringprintf}\\
 \helpref{PrintfV}{wxstringprintfv}\\
 
 \helpref{Printf}{wxstringprintf}\\
 \helpref{PrintfV}{wxstringprintfv}\\
-\helpref{operator \cinsert}{wxstringoperatorout)
+\helpref{operator \cinsert}{wxstringoperatorout}
 
 \membersection{Memory management}
 
 
 \membersection{Memory management}
 
@@ -962,4 +962,3 @@ Implicit conversion to a C string.
 
 These comparisons are case-sensitive.
 
 
 These comparisons are case-sensitive.
 
-