]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/tstring.tex
Replaced \verb$....$ with \tt{....}
[wxWidgets.git] / docs / latex / wx / tstring.tex
index 46cae19b09349cd68e5fc76c7e49d56ac82292df..3f9ccbb41649d81d746d1e08b744e95c3f4e2a76 100644 (file)
@@ -138,9 +138,9 @@ string with a NULL) and are in general not very safe (passing NULL 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{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{wxIsEmpty()}{wxisempty} verifies whether the string is empty (returning
+TRUE for 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 stricmp() or strcasecmp() on different platforms.