]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/any.h
Move code removing "-psn_xxx" command line arguments to common code.
[wxWidgets.git] / interface / wx / any.h
index 5396ecaf73035685ec5b8839bc77a18b68f04f0a..6862746c886273bbd5df78965306e53efca4439d 100644 (file)
@@ -2,8 +2,7 @@
 // Name:        any.h
 // 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}