[prev in list] [next in list] [prev in thread] [next in thread] 

List:       haiku-commits
Subject:    [haiku-commits] haiku: hrev50556 - headers/os/locale
From:       pulkomandy () pulkomandy ! tk
Date:       2016-09-27 17:36:13
Message-ID: 20160927173614.7E44D5C20E8 () vmrepo ! haiku-os ! org
[Download RAW message or body]

hrev50556 adds 1 changeset to branch 'master'
old head: a95053ddb78cbd821cea800af65ecaef10dabb49
new head: 32afcc5cc5b9f6b57d212291d4d6974885cd24b5
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=32afcc5cc5b9+%5Ea95053ddb78c

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

32afcc5cc5b9: Style fix in Locale Kit headers.
  
  As pointed out by Axel, the wrong style was used in these headers we
  inherited from OpenTracker days.

                             [ Adrien Destugues <pulkomandy@pulkomandy.tk> ]

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

Revision:    hrev50556
Commit:      32afcc5cc5b9f6b57d212291d4d6974885cd24b5
URL:         http://cgit.haiku-os.org/haiku/commit/?id=32afcc5cc5b9
Author:      Adrien Destugues <pulkomandy@pulkomandy.tk>
Date:        Tue Sep 27 17:34:52 2016 UTC

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

12 files changed, 21 insertions(+), 21 deletions(-)
headers/os/locale/Currency.h                | 4 ++--
headers/os/locale/FloatFormat.h             | 2 +-
headers/os/locale/FloatFormatImpl.h         | 2 +-
headers/os/locale/FloatFormatParameters.h   | 4 ++--
headers/os/locale/FormatImpl.h              | 2 +-
headers/os/locale/FormatParameters.h        | 6 +++---
headers/os/locale/GenericNumberFormat.h     | 4 ++--
headers/os/locale/IntegerFormat.h           | 2 +-
headers/os/locale/IntegerFormatImpl.h       | 2 +-
headers/os/locale/IntegerFormatParameters.h | 4 ++--
headers/os/locale/NumberFormatParameters.h  | 6 +++---
headers/os/locale/TextEncoding.h            | 4 ++--

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

diff --git a/headers/os/locale/Currency.h b/headers/os/locale/Currency.h
index 0cf86ce..754f473 100644
--- a/headers/os/locale/Currency.h
+++ b/headers/os/locale/Currency.h
@@ -8,7 +8,7 @@
 class BLocale;
 
 class BCurrency : public BArchivable {
-	public:
+public:
 		BCurrency(const BCurrency &other);
 		BCurrency(BMessage *archive);
 		BCurrency(const char *currencyCode);
@@ -31,7 +31,7 @@ class BCurrency : public BArchivable {
 		bool operator==(const BCurrency &other) const;
 		bool operator!=(const BCurrency &other) const;
 
-	private:
+private:
 		BCurrency();
 
 		bool _CheckData() const;
diff --git a/headers/os/locale/FloatFormat.h b/headers/os/locale/FloatFormat.h
index d152eed..fdeb96e 100644
--- a/headers/os/locale/FloatFormat.h
+++ b/headers/os/locale/FloatFormat.h
@@ -8,7 +8,7 @@ class BString;
 class BFloatFormatImpl;
 
 class BFloatFormat : public BNumberFormat, public BFloatFormatParameters {
-	public:
+public:
 		BFloatFormat(const BFloatFormat &other);
 		~BFloatFormat();
 
diff --git a/headers/os/locale/FloatFormatImpl.h b/headers/os/locale/FloatFormatImpl.h
index ad36779..62d88a4 100644
--- a/headers/os/locale/FloatFormatImpl.h
+++ b/headers/os/locale/FloatFormatImpl.h
@@ -6,7 +6,7 @@ class BFloatFormatParameters;
 class BString;
 
 class BFloatFormatImpl {
-	public:
+public:
 		BFloatFormatImpl();
 		virtual ~BFloatFormatImpl();
 
diff --git a/headers/os/locale/FloatFormatParameters.h b/headers/os/locale/FloatFormatParameters.h
index 948a90b..2de24f3 100644
--- a/headers/os/locale/FloatFormatParameters.h
+++ b/headers/os/locale/FloatFormatParameters.h
@@ -11,7 +11,7 @@ enum float_format_type {
 };
 
 class BFloatFormatParameters : public BNumberFormatParameters {
-	public:
+public:
 		BFloatFormatParameters(const BFloatFormatParameters *parent = NULL);
 		BFloatFormatParameters(const BFloatFormatParameters &other);
 		~BFloatFormatParameters();
@@ -40,7 +40,7 @@ class BFloatFormatParameters : public BNumberFormatParameters {
 		BFloatFormatParameters &operator=(
 			const BFloatFormatParameters &other);
 
-	private:
+private:
 		const BFloatFormatParameters	*fParent;
 		size_t							fMinimalFractionDigits;
 		size_t							fMaximalFractionDigits;
diff --git a/headers/os/locale/FormatImpl.h b/headers/os/locale/FormatImpl.h
index 6bc1660..789dd1b 100644
--- a/headers/os/locale/FormatImpl.h
+++ b/headers/os/locale/FormatImpl.h
@@ -6,7 +6,7 @@
 class BFormatParameters;
 
 class BFormatImpl {
-	public:
+public:
 		BFormatImpl();
 		virtual ~BFormatImpl();
 
diff --git a/headers/os/locale/FormatParameters.h b/headers/os/locale/FormatParameters.h
index 85cfad1..4562398 100644
--- a/headers/os/locale/FormatParameters.h
+++ b/headers/os/locale/FormatParameters.h
@@ -9,7 +9,7 @@ enum format_alignment {
 };
 
 class BFormatParameters {
-	public:
+public:
 		BFormatParameters(const BFormatParameters *parent = NULL);
 		BFormatParameters(const BFormatParameters &other);
 		~BFormatParameters();
@@ -24,10 +24,10 @@ class BFormatParameters {
 
 		BFormatParameters &operator=(const BFormatParameters &other);
 
-	protected:
+protected:
 		void SetParentParameters(const BFormatParameters *parent);
 
-	private:
+private:
 		const BFormatParameters	*fParent;
 		format_alignment		fAlignment;
 		size_t					fWidth;
diff --git a/headers/os/locale/GenericNumberFormat.h b/headers/os/locale/GenericNumberFormat.h
index c6b7fb1..a9dee27 100644
--- a/headers/os/locale/GenericNumberFormat.h
+++ b/headers/os/locale/GenericNumberFormat.h
@@ -8,7 +8,7 @@ class BString;
 struct format_field_position;
 
 class BGenericNumberFormat {
-	public:
+public:
 		BGenericNumberFormat();
 		~BGenericNumberFormat();
 
@@ -96,7 +96,7 @@ class BGenericNumberFormat {
 // is a multiple of 3), i.e. allow setting the number of which the exponent
 // must be a multiple of.
 
-	private:
+private:
 		class BufferWriter;
 		class Float;
 		class GroupingInfo;
diff --git a/headers/os/locale/IntegerFormat.h b/headers/os/locale/IntegerFormat.h
index 4f1e771..aed41e4 100644
--- a/headers/os/locale/IntegerFormat.h
+++ b/headers/os/locale/IntegerFormat.h
@@ -13,7 +13,7 @@ class BString;
 // classes' accessor methods.
 //
 class BIntegerFormat : public BNumberFormat, public BIntegerFormatParameters {
-	public:
+public:
 		BIntegerFormat(const BIntegerFormat &other);
 		~BIntegerFormat();
 
diff --git a/headers/os/locale/IntegerFormatImpl.h b/headers/os/locale/IntegerFormatImpl.h
index a4231d0..9fdfa3f 100644
--- a/headers/os/locale/IntegerFormatImpl.h
+++ b/headers/os/locale/IntegerFormatImpl.h
@@ -6,7 +6,7 @@ class BIntegerFormatParameters;
 class BString;
 
 class BIntegerFormatImpl {
-	public:
+public:
 		BIntegerFormatImpl();
 		virtual ~BIntegerFormatImpl();
 
diff --git a/headers/os/locale/IntegerFormatParameters.h b/headers/os/locale/IntegerFormatParameters.h
index 3f44dee..e3b81aa 100644
--- a/headers/os/locale/IntegerFormatParameters.h
+++ b/headers/os/locale/IntegerFormatParameters.h
@@ -4,7 +4,7 @@
 #include <NumberFormatParameters.h>
 
 class BIntegerFormatParameters : public BNumberFormatParameters {
-	public:
+public:
 		BIntegerFormatParameters(const BIntegerFormatParameters *parent = NULL);
 		BIntegerFormatParameters(const BIntegerFormatParameters &other);
 		~BIntegerFormatParameters();
@@ -15,7 +15,7 @@ class BIntegerFormatParameters : public BNumberFormatParameters {
 		BIntegerFormatParameters &operator=(
 			const BIntegerFormatParameters &other);
 
-	private:
+private:
 		const BIntegerFormatParameters	*fParent;
 };
 
diff --git a/headers/os/locale/NumberFormatParameters.h b/headers/os/locale/NumberFormatParameters.h
index e2b21bb..b83a7cd 100644
--- a/headers/os/locale/NumberFormatParameters.h
+++ b/headers/os/locale/NumberFormatParameters.h
@@ -21,7 +21,7 @@ enum number_format_base {
 };
 
 class BNumberFormatParameters : public BFormatParameters {
-	public:
+public:
 		BNumberFormatParameters(const BNumberFormatParameters *parent = NULL);
 		BNumberFormatParameters(const BNumberFormatParameters &other);
 		~BNumberFormatParameters();
@@ -49,10 +49,10 @@ class BNumberFormatParameters : public BFormatParameters {
 		BNumberFormatParameters &operator=(
 			const BNumberFormatParameters &other);
 
-	protected:
+protected:
 		void SetParentNumberParameters(const BNumberFormatParameters *parent);
 
-	private:
+private:
 		const BNumberFormatParameters	*fParent;
 		bool							fUseGrouping;
 		number_format_sign_policy		fSignPolicy;
diff --git a/headers/os/locale/TextEncoding.h b/headers/os/locale/TextEncoding.h
index c349c43..d61230f 100644
--- a/headers/os/locale/TextEncoding.h
+++ b/headers/os/locale/TextEncoding.h
@@ -18,7 +18,7 @@ struct UConverter;
 
 class TextEncoding
 {
-	public:
+public:
 								TextEncoding(BString name);
 								TextEncoding(const char* data, size_t length);
 
@@ -33,7 +33,7 @@ class TextEncoding
 									char* output, size_t& outputLength);
 			status_t			Flush(char* output, size_t& outputLength);
 
-	private:
+private:
 			BString				fName;
 
 			UConverter*			fUtf8Converter;


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic