]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 11 Jun 2001 16:17:47 +0000 (16:17 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 11 Jun 2001 16:17:47 +0000 (16:17 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10537 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/function.tex
docs/latex/wx/tstring.tex

index 02be5f0fadab774528b214fc782887abe6b22bc7..2e2a82e22e9b4fd2a20cbc21c7df14c46ffca0d5 100644 (file)
@@ -463,7 +463,7 @@ deleted with the {\it delete} operator.
 
 \membersection{::wxIsEmpty}\label{wxisempty}
 
-\func{bool}{IsEmpty}{\param{const char *}{ p}}
+\func{bool}{wxIsEmpty}{\param{const char *}{ p}}
 
 Returns {\tt TRUE} if the pointer is either {\tt NULL} or points to an empty
 string, {\tt FALSE} otherwise.
@@ -503,7 +503,7 @@ This function is obsolete, use \helpref{wxString}{wxstring} instead.
 
 \membersection{::wxStrlen}\label{wxstrlen}
 
-\func{size\_t}{Strlen}{\param{const char *}{ p}}
+\func{size\_t}{wxStrlen}{\param{const char *}{ p}}
 
 This is a safe version of standard function {\it strlen()}: it does exactly the
 same thing (i.e. returns the length of the string) except that it returns 0 if
index 74f1763fe8155fb6909312ba15813d3d6ee2a4a7..b40d241257de368b36f6d58bb193c21640ba6d2e 100644 (file)
@@ -139,7 +139,7 @@ to them will probably lead to program crash). Moreover, some very useful
 functions are not standard at all. This is why in addition to all wxString
 functions, there are also a few global string functions which try to correct
 these problems: \helpref{wxIsEmpty()}{wxisempty} verifies whether the string
-is empty (returning {\tt TRUE} for {\tt NULL| pointers), 
+is empty (returning {\tt TRUE} for {\tt NULL} pointers), 
 \helpref{wxStrlen()}{wxstrlen} also handles NULLs correctly and returns 0 for
 them and \helpref{wxStricmp()}{wxstricmp} is just a platform-independent
 version of case-insensitive string comparison function known either as