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:
Vadim Zeitlin
2021-02-21 16:43:04 +01:00
parent 7371131f1e
commit d3f051e328

View File

@@ -70,7 +70,10 @@ public:
Combination of values from the Style enumeration (except for
Style_NoTrailingZeroes which can't be used with this overload).
*/
//@{
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.
@@ -98,6 +101,7 @@ public:
*/
//@{
static bool FromString(wxString s, long *val);
static bool FromString(wxString s, long long *val);
static bool FromString(wxString s, double *val);
//@}