[Libreoffice-commits] core.git: include/svl

Philipp Riemer ruderphilipp at gmail.com
Wed Sep 4 01:42:26 PDT 2013


 include/svl/filerec.hxx |   25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

New commits:
commit e1c732c1b45b07ad2fc414d85e725d6498c949a2
Author: Philipp Riemer <ruderphilipp at gmail.com>
Date:   Tue Sep 3 19:50:46 2013 +0200

    adjust code to layout
    
    Change-Id: Ia2eeb93fa1eb08c31b9b016c4cb15263633ab518
    Reviewed-on: https://gerrit.libreoffice.org/5794
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/include/svl/filerec.hxx b/include/svl/filerec.hxx
index 4f8172c..7ace888 100644
--- a/include/svl/filerec.hxx
+++ b/include/svl/filerec.hxx
@@ -201,22 +201,19 @@ protected:
     sal_uInt8           _nPreTag;   //  in den Header zu schreibendes 'Pre-Tag'
 
 public:
-    inline          SfxMiniRecordWriter( SvStream *pStream,
-                                         sal_uInt8 nTag );
+    inline          SfxMiniRecordWriter( SvStream *pStream, sal_uInt8 nTag );
     inline          SfxMiniRecordWriter( SvStream *pStream, sal_uInt8 nTag,
                                          sal_uInt32 nSize );
-
     inline          ~SfxMiniRecordWriter();
 
     inline SvStream& operator*() const;
 
     inline void     Reset();
-
-    sal_uInt32          Close( bool bSeekToEndOfRec = true );
+    sal_uInt32      Close( bool bSeekToEndOfRec = true );
 
 private:
-                    // not implementend, not allowed
-                    SfxMiniRecordWriter( const SfxMiniRecordWriter& );
+    /// not implementend, not allowed
+    SfxMiniRecordWriter( const SfxMiniRecordWriter& );
     SfxMiniRecordWriter& operator=(const SfxMiniRecordWriter&);
 };
 
@@ -272,7 +269,7 @@ public:
     SfxMiniRecordReader( SvStream *pStream, sal_uInt8 nTag );
     inline              ~SfxMiniRecordReader();
 
-    inline sal_uInt8        GetTag() const;
+    inline sal_uInt8    GetTag() const;
     inline bool         IsValid() const;
 
     inline SvStream&    operator*() const;
@@ -280,8 +277,8 @@ public:
     inline void         Skip();
 
 private:
-                        // not implementend, not allowed
-                        SfxMiniRecordReader( const SfxMiniRecordReader& );
+    /// not implementend, not allowed
+    SfxMiniRecordReader( const SfxMiniRecordReader& );
     SfxMiniRecordReader& operator=(const SfxMiniRecordReader&);
 };
 
@@ -489,7 +486,7 @@ public:
 
     void                NewContent();
 
-    virtual sal_uInt32      Close( bool bSeekToEndOfRec = true );
+    virtual sal_uInt32  Close( bool bSeekToEndOfRec = true );
 };
 
 /*  [Beschreibung]
@@ -588,11 +585,11 @@ public:
                         ~SfxMultiRecordReader();
 
     bool                GetContent();
-    inline sal_uInt16       GetContentTag();
-    inline sal_uInt8        GetContentVersion() const;
+    inline sal_uInt16   GetContentTag();
+    inline sal_uInt8    GetContentVersion() const;
     inline bool         HasContentVersion( sal_uInt16 nVersion ) const;
 
-    inline sal_uInt32       ContentCount() const;
+    inline sal_uInt32   ContentCount() const;
 };
 
 /*  [Beschreibung]


More information about the Libreoffice-commits mailing list