]> git.saurik.com Git - wxWidgets.git/commitdiff
better define what an ASCII character is considered to be in IsAscii()
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 31 Jan 2009 15:57:45 +0000 (15:57 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 31 Jan 2009 15:57:45 +0000 (15:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58554 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/string.h
interface/wx/unichar.h

index 80f58699d10f5ce944d1018cc5ed48426f73d117..1cda9cfd760291c94d2583894ba92e74951e5a45 100644 (file)
@@ -36,7 +36,7 @@
     for important warnings and advices for using it, please read
     the @ref overview_string.
 
-    In wxWidgets 3.0 wxString always stores Unicode strings, so you should
+    Since wxWidgets 3.0 wxString always stores Unicode strings, so you should
     be sure to read also @ref overview_unicode.
 
 
@@ -652,6 +652,8 @@ public:
 
     /**
         Returns @true if the string contains only ASCII characters.
+        See wxUniChar::IsAscii for more details.
+
         This is a wxWidgets 1.xx compatibility function; you should not use it in new
         code.
     */
index fd058c1ddca970e9e5634fa2d661bd5d9685fe6e..83f63525d8e9b0fed71eeff9424889da92c074b7 100644 (file)
@@ -54,7 +54,7 @@ public:
     value_type GetValue() const;
 
     /**
-        Returns true if the character is an ASCII character.
+        Returns true if the character is an ASCII character (i.e. if its value is less than 128).
     */
     bool IsAscii() const;