Document wxNumberFormatter overloads using long long
These overloads were added back in f2a5052baa
(Add support for long long
to wxNumberFormatter., 2011-01-19) but never documented.
This commit is contained in:
@@ -70,7 +70,10 @@ public:
|
|||||||
Combination of values from the Style enumeration (except for
|
Combination of values from the Style enumeration (except for
|
||||||
Style_NoTrailingZeroes which can't be used with this overload).
|
Style_NoTrailingZeroes which can't be used with this overload).
|
||||||
*/
|
*/
|
||||||
|
//@{
|
||||||
static wxString ToString(long val, int flags = Style_WithThousandsSep);
|
static wxString ToString(long val, int flags = Style_WithThousandsSep);
|
||||||
|
static wxString ToString(long long val, int flags = Style_WithThousandsSep);
|
||||||
|
//@}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns string representation of a floating point number.
|
Returns string representation of a floating point number.
|
||||||
@@ -98,6 +101,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
static bool FromString(wxString s, long *val);
|
static bool FromString(wxString s, long *val);
|
||||||
|
static bool FromString(wxString s, long long *val);
|
||||||
static bool FromString(wxString s, double *val);
|
static bool FromString(wxString s, double *val);
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user