[haiku-commits] haiku: hrev50555 - headers/os/locale

  • From: pulkomandy@xxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 27 Sep 2016 07:22:03 +0200 (CEST)

hrev50555 adds 1 changeset to branch 'master'
old head: 766191919df43b68aa543a1c17cff895cf4c3653
new head: a95053ddb78cbd821cea800af65ecaef10dabb49
overview: 
http://cgit.haiku-os.org/haiku/log/?qt=range&q=a95053ddb78c+%5E766191919df4

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

a95053ddb78c: TextEncoding: Style fixes to header.
  
  As pointed out by Axel.

                             [ Adrien Destugues <pulkomandy@xxxxxxxxxxxxx> ]

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

Revision:    hrev50555
Commit:      a95053ddb78cbd821cea800af65ecaef10dabb49
URL:         http://cgit.haiku-os.org/haiku/commit/?id=a95053ddb78c
Author:      Adrien Destugues <pulkomandy@xxxxxxxxxxxxx>
Date:        Tue Sep 27 05:20:47 2016 UTC

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

1 file changed, 13 insertions(+), 13 deletions(-)
headers/os/locale/TextEncoding.h | 26 +++++++++++++-------------

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

diff --git a/headers/os/locale/TextEncoding.h b/headers/os/locale/TextEncoding.h
index 0453e19..c349c43 100644
--- a/headers/os/locale/TextEncoding.h
+++ b/headers/os/locale/TextEncoding.h
@@ -19,25 +19,25 @@ struct UConverter;
 class TextEncoding
 {
        public:
-               TextEncoding(BString name);
-               TextEncoding(const char* data, size_t length);
+                                                               
TextEncoding(BString name);
+                                                               
TextEncoding(const char* data, size_t length);
 
-               ~TextEncoding();
+                                                               ~TextEncoding();
 
-               status_t        InitCheck();
-               BString         GetName();
+                       status_t                        InitCheck();
+                       BString                         GetName();
 
-               status_t Encode(const char* input, size_t& inputLength, char* 
output,
-                       size_t& outputLength);
-               status_t Decode(const char* input, size_t& inputLength, char* 
output,
-                       size_t& outputLength);
-               status_t Flush(char* output, size_t& outputLength);
+                       status_t                        Encode(const char* 
input, size_t& inputLength,
+                                                                       char* 
output, size_t& outputLength);
+                       status_t                        Decode(const char* 
input, size_t& inputLength,
+                                                                       char* 
output, size_t& outputLength);
+                       status_t                        Flush(char* output, 
size_t& outputLength);
 
        private:
-               BString fName;
+                       BString                         fName;
 
-               UConverter* fUtf8Converter;
-               UConverter* fConverter;
+                       UConverter*                     fUtf8Converter;
+                       UConverter*                     fConverter;
 };
 
 


Other related posts: