Locale: fix binary compatibility for BNumberFormat
Issue: https://github.com/HaikuArchives/Album/issues/15 Change-Id: I1f8d5055f929957adb0cca20a8f6b13bcccabfab Reviewed-on: https://review.haiku-os.org/c/haiku/+/3807 Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>
This commit is contained in:
parent
7124ff96d3
commit
e3c3983827
@ -44,6 +44,7 @@ public:
|
|||||||
BString GetSeparator(BNumberElement element);
|
BString GetSeparator(BNumberElement element);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
BNumberFormat();
|
||||||
BNumberFormat(const BNumberFormat &other);
|
BNumberFormat(const BNumberFormat &other);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -193,6 +193,13 @@ BNumberFormat::BNumberFormat(const BLocale* locale)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
BNumberFormat::BNumberFormat()
|
||||||
|
: BFormat()
|
||||||
|
{
|
||||||
|
fPrivateData = new BNumberFormatImpl();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
BNumberFormat::BNumberFormat(const BNumberFormat &other)
|
BNumberFormat::BNumberFormat(const BNumberFormat &other)
|
||||||
: BFormat(other)
|
: BFormat(other)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user