diff --git a/headers/os/locale/GenericNumberFormat.h b/headers/os/locale/GenericNumberFormat.h index a9dee27077..7f5e4b9ec1 100644 --- a/headers/os/locale/GenericNumberFormat.h +++ b/headers/os/locale/GenericNumberFormat.h @@ -1,7 +1,6 @@ #ifndef _B_GENERIC_NUMBER_FORMAT_H_ #define _B_GENERIC_NUMBER_FORMAT_H_ -#include #include class BString; @@ -40,20 +39,6 @@ public: int32 *fieldCount = NULL, bool allFieldPositions = false) const; - status_t FormatFloat(const BFloatFormatParameters *parameters, - double number, BString *buffer, - format_field_position *positions = NULL, - int32 positionCount = 1, - int32 *fieldCount = NULL, - bool allFieldPositions = false) const; - - status_t FormatFloat(const BFloatFormatParameters *parameters, - double number, char *buffer, size_t bufferSize, - format_field_position *positions = NULL, - int32 positionCount = 1, - int32 *fieldCount = NULL, - bool allFieldPositions = false) const; - // default number format parameters status_t SetDefaultIntegerFormatParameters( @@ -61,11 +46,6 @@ public: BIntegerFormatParameters *DefaultIntegerFormatParameters(); const BIntegerFormatParameters *DefaultIntegerFormatParameters() const; - status_t SetDefaultFloatFormatParameters( - const BFloatFormatParameters *parameters); - BFloatFormatParameters *DefaultFloatFormatParameters(); - const BFloatFormatParameters *DefaultFloatFormatParameters() const; - // other parameters configuring the formatter status_t SetDigitSymbols(const char **digits); @@ -158,7 +138,6 @@ private: static status_t _SetSymbol(Symbol **symbol, const char *str); BIntegerFormatParameters fIntegerParameters; - BFloatFormatParameters fFloatParameters; Symbol *fDigitSymbols; Symbol *fFractionSeparator; GroupingInfo *fGroupingInfo;