summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-08-19 17:32:55 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-08-19 17:32:55 -0400
commitf3f060986ff8dcd310dfa944259c7189b9d8c3cd (patch)
tree9e36674b3c3463b7b7ee1fb4c7f5551c56571da6
parentbf2de6f8c2d4efab4161915f64aea9ca1fc525a0 (diff)
Fix excessive indentation.
Change-Id: I464c8e103f1c31f9e4321b4f481413df6a4822e7
-rw-r--r--sc/inc/dbdataformatting.hxx74
1 files changed, 37 insertions, 37 deletions
diff --git a/sc/inc/dbdataformatting.hxx b/sc/inc/dbdataformatting.hxx
index 91666c62106f..dc9d6ed2f6dc 100644
--- a/sc/inc/dbdataformatting.hxx
+++ b/sc/inc/dbdataformatting.hxx
@@ -14,43 +14,43 @@
class SC_DLLPUBLIC ScDBDataFormatting
{
- OUString maTableStyleName;
- OUString maFirstRowStripeStyle;
- OUString maSecondRowStripeStyle;
- OUString maFirstColStripeStyle;
- OUString maSecondColStripeStyle;
- sal_Int32 maFirstRowStripeSize;
- sal_Int32 maSecondRowStripeSize;
- sal_Int32 maFirstColStripeSize;
- sal_Int32 maSecondColStripeSize;
- bool bBandedRows;
- bool bBandedColumns;
- public:
- ScDBDataFormatting();
- ScDBDataFormatting(const OUString& rTableStyleName, const OUString& rFirstRowStripeStyle, const OUString& rSecondRowStripeStyle, const OUString& rFirstColStripeStyle, const OUString& rSecondColStripeStyle, bool bBRows, bool bBCols);
- ScDBDataFormatting( const ScDBDataFormatting& rTableFormatData );
- void SetTableStyleName( const OUString& rTableStyleName );
- const OUString& GetTableStyleName();
- void SetBandedRows( bool bBRows );
- bool GetBandedRows();
- void SetBandedColumns( bool bBCols );
- bool GetBandedColumns();
- const OUString& GetFirstRowStripeStyle() const;
- const OUString& GetSecondRowStripeStyle() const;
- const OUString& GetFirstColStripeStyle() const;
- const OUString& GetSecondColStripeStyle() const;
- sal_Int32 GetFirstRowStripeSize() const { return maFirstRowStripeSize; }
- sal_Int32 GetSecondRowStripeSize() const { return maSecondRowStripeSize; }
- sal_Int32 GetFirstColStripeSize() const { return maFirstColStripeSize; }
- sal_Int32 GetSecondColStripeSize() const { return maSecondColStripeSize; }
- void SetFirstRowStripeSize( const sal_Int32 nSize ){ maFirstRowStripeSize = nSize; }
- void SetSecondRowStripeSize( const sal_Int32 nSize ){ maSecondRowStripeSize = nSize; }
- void SetFirstColStripeSize( const sal_Int32 nSize ){ maFirstColStripeSize = nSize; }
- void SetSecondColStripeSize( const sal_Int32 nSize ){ maSecondColStripeSize = nSize; }
- void SetFirstRowStripeStyle( const OUString& aStyleName );
- void SetSecondRowStripeStyle( const OUString& aStyleName );
- void SetFirstColStripeStyle( const OUString& aStyleName );
- void SetSecondColStripeStyle( const OUString& aStyleName );
+ OUString maTableStyleName;
+ OUString maFirstRowStripeStyle;
+ OUString maSecondRowStripeStyle;
+ OUString maFirstColStripeStyle;
+ OUString maSecondColStripeStyle;
+ sal_Int32 maFirstRowStripeSize;
+ sal_Int32 maSecondRowStripeSize;
+ sal_Int32 maFirstColStripeSize;
+ sal_Int32 maSecondColStripeSize;
+ bool bBandedRows;
+ bool bBandedColumns;
+public:
+ ScDBDataFormatting();
+ ScDBDataFormatting(const OUString& rTableStyleName, const OUString& rFirstRowStripeStyle, const OUString& rSecondRowStripeStyle, const OUString& rFirstColStripeStyle, const OUString& rSecondColStripeStyle, bool bBRows, bool bBCols);
+ ScDBDataFormatting( const ScDBDataFormatting& rTableFormatData );
+ void SetTableStyleName( const OUString& rTableStyleName );
+ const OUString& GetTableStyleName();
+ void SetBandedRows( bool bBRows );
+ bool GetBandedRows();
+ void SetBandedColumns( bool bBCols );
+ bool GetBandedColumns();
+ const OUString& GetFirstRowStripeStyle() const;
+ const OUString& GetSecondRowStripeStyle() const;
+ const OUString& GetFirstColStripeStyle() const;
+ const OUString& GetSecondColStripeStyle() const;
+ sal_Int32 GetFirstRowStripeSize() const { return maFirstRowStripeSize; }
+ sal_Int32 GetSecondRowStripeSize() const { return maSecondRowStripeSize; }
+ sal_Int32 GetFirstColStripeSize() const { return maFirstColStripeSize; }
+ sal_Int32 GetSecondColStripeSize() const { return maSecondColStripeSize; }
+ void SetFirstRowStripeSize( const sal_Int32 nSize ){ maFirstRowStripeSize = nSize; }
+ void SetSecondRowStripeSize( const sal_Int32 nSize ){ maSecondRowStripeSize = nSize; }
+ void SetFirstColStripeSize( const sal_Int32 nSize ){ maFirstColStripeSize = nSize; }
+ void SetSecondColStripeSize( const sal_Int32 nSize ){ maSecondColStripeSize = nSize; }
+ void SetFirstRowStripeStyle( const OUString& aStyleName );
+ void SetSecondRowStripeStyle( const OUString& aStyleName );
+ void SetFirstColStripeStyle( const OUString& aStyleName );
+ void SetSecondColStripeStyle( const OUString& aStyleName );
};
#endif