]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/any.h
Fix wxWebView documentation warnings.
[wxWidgets.git] / interface / wx / any.h
index 605fb77f3f346b8fa1a1e15219f28b3faf807a42..e8b5c6da5f84bb543966a116f4315024a9639dae 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     interface of wxAny
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 
     object in heap for large objects (i.e. ones with size more than
     WX_ANY_VALUE_BUFFER_SIZE, which at the time of writing is 16 bytes).
 
+    @note When performing conversions between strings and floating point
+        numbers, the representation of numbers in C locale is always used.
+        I.e. @code wxAny("1.23").GetAs<double>() @endcode will always work,
+        even if the current locale uses comma as decimal separator.
+
     @library{wxbase}
     @category{data}
 
@@ -154,7 +159,7 @@ public:
     bool HasSameType(const wxAny& other) const;
 
     /**
-        Tests if wxAny is null (that is, whether there is data).
+        Tests if wxAny is null (that is, whether there is no data).
     */
     bool IsNull() const;