X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f1156cbb0db33e76e031d05c8823f5c27628b685..92c0fc34c104c8d7c12d6a3b78ea232690fc23f4:/interface/wx/any.h diff --git a/interface/wx/any.h b/interface/wx/any.h index 605fb77f3f..6862746c88 100644 --- a/interface/wx/any.h +++ b/interface/wx/any.h @@ -2,8 +2,7 @@ // Name: any.h // Purpose: interface of wxAny // Author: wxWidgets team -// RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -48,6 +47,11 @@ 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() @endcode will always work, + even if the current locale uses comma as decimal separator. + @library{wxbase} @category{data} @@ -154,7 +158,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;