From 136884d011c88d5cd02eee170ee2b4c71d02bc20 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Mon, 6 Oct 2014 08:35:50 +0200 Subject: [PATCH] Remove references to NumberFormatImpl. The class and header file are gone, so don't try to use them. Fixes #11312. --- headers/os/LocaleKit.h | 1 - headers/os/locale/FloatFormatImpl.h | 4 +--- headers/os/locale/IntegerFormatImpl.h | 4 +--- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/headers/os/LocaleKit.h b/headers/os/LocaleKit.h index b94c2e5659..d7179d2f87 100644 --- a/headers/os/LocaleKit.h +++ b/headers/os/LocaleKit.h @@ -21,7 +21,6 @@ #include #include #include -#include #include #include #include diff --git a/headers/os/locale/FloatFormatImpl.h b/headers/os/locale/FloatFormatImpl.h index ec877a41c5..ad36779df7 100644 --- a/headers/os/locale/FloatFormatImpl.h +++ b/headers/os/locale/FloatFormatImpl.h @@ -1,13 +1,11 @@ #ifndef _B_FLOAT_FORMAT_IMPL_H_ #define _B_FLOAT_FORMAT_IMPL_H_ -#include - struct format_field_position; class BFloatFormatParameters; class BString; -class BFloatFormatImpl : public BNumberFormatImpl { +class BFloatFormatImpl { public: BFloatFormatImpl(); virtual ~BFloatFormatImpl(); diff --git a/headers/os/locale/IntegerFormatImpl.h b/headers/os/locale/IntegerFormatImpl.h index ecd192f19a..a4231d09b4 100644 --- a/headers/os/locale/IntegerFormatImpl.h +++ b/headers/os/locale/IntegerFormatImpl.h @@ -1,13 +1,11 @@ #ifndef _B_INTEGER_FORMAT_IMPL_H_ #define _B_INTEGER_FORMAT_IMPL_H_ -#include - struct format_field_position; class BIntegerFormatParameters; class BString; -class BIntegerFormatImpl : public BNumberFormatImpl { +class BIntegerFormatImpl { public: BIntegerFormatImpl(); virtual ~BIntegerFormatImpl();