Locale: correct fix binary compatibility for BNumberFormat
fix HaikuDepot build after hrev55006 Change-Id: I3c275e1b0f23f936db448ad82639458535617d6a Reviewed-on: https://review.haiku-os.org/c/haiku/+/3809 Reviewed-by: Jérôme Duval <[email protected]>
This commit is contained in:
@@ -19,7 +19,8 @@ class BNumberFormatImpl;
|
|||||||
|
|
||||||
class BNumberFormat : public BFormat {
|
class BNumberFormat : public BFormat {
|
||||||
public:
|
public:
|
||||||
BNumberFormat(const BLocale* locale = NULL);
|
BNumberFormat();
|
||||||
|
BNumberFormat(const BLocale* locale);
|
||||||
~BNumberFormat();
|
~BNumberFormat();
|
||||||
|
|
||||||
ssize_t Format(char* string, size_t maxSize,
|
ssize_t Format(char* string, size_t maxSize,
|
||||||
@@ -44,7 +45,6 @@ public:
|
|||||||
BString GetSeparator(BNumberElement element);
|
BString GetSeparator(BNumberElement element);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
BNumberFormat();
|
|
||||||
BNumberFormat(const BNumberFormat &other);
|
BNumberFormat(const BNumberFormat &other);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|||||||
@@ -186,15 +186,15 @@ BNumberFormatImpl::ApplyFormatter(NumberFormat* formatter, BString& string,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
BNumberFormat::BNumberFormat(const BLocale* locale)
|
BNumberFormat::BNumberFormat()
|
||||||
: BFormat(locale)
|
: BFormat()
|
||||||
{
|
{
|
||||||
fPrivateData = new BNumberFormatImpl();
|
fPrivateData = new BNumberFormatImpl();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
BNumberFormat::BNumberFormat()
|
BNumberFormat::BNumberFormat(const BLocale* locale)
|
||||||
: BFormat()
|
: BFormat(locale)
|
||||||
{
|
{
|
||||||
fPrivateData = new BNumberFormatImpl();
|
fPrivateData = new BNumberFormatImpl();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user