]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/chartype.h
fix (one off, so not really important) memory leak which happened if an application...
[wxWidgets.git] / interface / chartype.h
index 48c2f65222729491afdd77684e32922708a721a2..4e8d4e4d57225cbbd3c1d0119b61c3a9d128a58c 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        chartype.h
-// Purpose:     documentation for global functions
+// Purpose:     interface of global functions
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -12,7 +12,6 @@
     words, @c 'x' or @c "foo") to automatically convert them to Unicode in
     Unicode build configuration. Please see the
     @ref overview_unicode "Unicode overview" for more information.
-
     This macro is simply returns the value passed to it without changes in ASCII
     build. In fact, its definition is:
 
@@ -25,7 +24,7 @@
     @endcode
 */
 wxChar wxT(char ch);
-const wxChar * wxT(const char * s);
+const wxChar* wxT(const char* s);
 //@}
 
 
@@ -39,9 +38,9 @@ const wxChar * wxT(const char * s);
     current build, but using it can be beneficial in performance-sensitive code to
     do the conversion at compile-time instead.
 
-    @sa wxT
+    @see wxT()
 */
 wxStringCharType wxS(char ch);
-const wxStringCharType * wxS(const char * s);
+const wxStringCharType* wxS(const char* s);
 //@}