[haiku-commits] haiku: hrev47962 - in headers/os/locale: . headers/os

  • From: pulkomandy@xxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 6 Oct 2014 08:36:42 +0200 (CEST)

hrev47962 adds 1 changeset to branch 'master'
old head: 33046f3a8c66427ddf0c15cede01423a195feaf3
new head: 136884d011c88d5cd02eee170ee2b4c71d02bc20
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=136884d+%5E33046f3

----------------------------------------------------------------------------

136884d: Remove references to NumberFormatImpl.
  
  The class and header file are gone, so don't try to use them.
  Fixes #11312.

                                 [ Adrien Destugues <pulkomandy@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev47962
Commit:      136884d011c88d5cd02eee170ee2b4c71d02bc20
URL:         http://cgit.haiku-os.org/haiku/commit/?id=136884d
Author:      Adrien Destugues <pulkomandy@xxxxxxxxx>
Date:        Mon Oct  6 06:35:50 2014 UTC

Ticket:      https://dev.haiku-os.org/ticket/11312

----------------------------------------------------------------------------

3 files changed, 2 insertions(+), 7 deletions(-)
headers/os/LocaleKit.h                | 1 -
headers/os/locale/FloatFormatImpl.h   | 4 +---
headers/os/locale/IntegerFormatImpl.h | 4 +---

----------------------------------------------------------------------------

diff --git a/headers/os/LocaleKit.h b/headers/os/LocaleKit.h
index b94c2e5..d7179d2 100644
--- a/headers/os/LocaleKit.h
+++ b/headers/os/LocaleKit.h
@@ -21,7 +21,6 @@
 #include <Language.h>
 #include <Locale.h>
 #include <NumberFormat.h>
-#include <NumberFormatImpl.h>
 #include <NumberFormatParameters.h>
 #include <TimeFormat.h>
 #include <UnicodeChar.h>
diff --git a/headers/os/locale/FloatFormatImpl.h 
b/headers/os/locale/FloatFormatImpl.h
index ec877a4..ad36779 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 <NumberFormatImpl.h>
-
 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 ecd192f..a4231d0 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 <NumberFormatImpl.h>
-
 struct format_field_position;
 class BIntegerFormatParameters;
 class BString;
 
-class BIntegerFormatImpl : public BNumberFormatImpl {
+class BIntegerFormatImpl {
        public:
                BIntegerFormatImpl();
                virtual ~BIntegerFormatImpl();


Other related posts:

  • » [haiku-commits] haiku: hrev47962 - in headers/os/locale: . headers/os - pulkomandy