]> 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 de177e1430e2d23bde4d13368972eeb888db94b7..6862746c886273bbd5df78965306e53efca4439d 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        any.h
 // Purpose:     interface of wxAny
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // 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}