diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-09-27 08:18:42 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-09-27 08:18:42 +0000 |
commit | f7e3d8abf41d5293606841a9c8fad346daeeda70 (patch) | |
tree | acb695ec201d3683ad2d079a126e4c0ce1115512 /sw/source/core/text/portab.hxx | |
parent | 895babd9f5c171ebffcd950ace40a20bc0c018ff (diff) |
INTEGRATION: CWS swwarnings (1.6.502); FILE MERGED
2007/02/27 13:07:06 tl 1.6.502.1: #i69287# warning-free code
Diffstat (limited to 'sw/source/core/text/portab.hxx')
-rw-r--r-- | sw/source/core/text/portab.hxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/sw/source/core/text/portab.hxx b/sw/source/core/text/portab.hxx index e45c5df65ce3..0a315e0950f6 100644 --- a/sw/source/core/text/portab.hxx +++ b/sw/source/core/text/portab.hxx @@ -4,9 +4,9 @@ * * $RCSfile: portab.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: rt $ $Date: 2006-02-09 13:45:02 $ + * last change: $Author: hr $ $Date: 2007-09-27 09:18:42 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -70,8 +70,8 @@ public: class SwTabLeftPortion : public SwTabPortion { public: - inline SwTabLeftPortion( const KSHORT nTabPos, const xub_Unicode cFill='\0' ) - : SwTabPortion( nTabPos, cFill ) + inline SwTabLeftPortion( const KSHORT nTabPosVal, const xub_Unicode cFillChar='\0' ) + : SwTabPortion( nTabPosVal, cFillChar ) { SetWhichPor( POR_TABLEFT ); } OUTPUT_OPERATOR }; @@ -83,8 +83,8 @@ public: class SwTabRightPortion : public SwTabPortion { public: - inline SwTabRightPortion( const KSHORT nTabPos, const xub_Unicode cFill='\0' ) - : SwTabPortion( nTabPos, cFill ) + inline SwTabRightPortion( const KSHORT nTabPosVal, const xub_Unicode cFillChar='\0' ) + : SwTabPortion( nTabPosVal, cFillChar ) { SetWhichPor( POR_TABRIGHT ); } OUTPUT_OPERATOR }; @@ -96,8 +96,8 @@ public: class SwTabCenterPortion : public SwTabPortion { public: - inline SwTabCenterPortion( const KSHORT nTabPos, const xub_Unicode cFill='\0' ) - : SwTabPortion( nTabPos, cFill ) + inline SwTabCenterPortion( const KSHORT nTabPosVal, const xub_Unicode cFillChar='\0' ) + : SwTabPortion( nTabPosVal, cFillChar ) { SetWhichPor( POR_TABCENTER ); } OUTPUT_OPERATOR }; @@ -118,9 +118,9 @@ class SwTabDecimalPortion : public SwTabPortion USHORT mnWidthOfPortionsUpTpDecimalPosition; public: - inline SwTabDecimalPortion( const KSHORT nTabPos, const xub_Unicode cTab, - const xub_Unicode cFill = '\0' ) - : SwTabPortion( nTabPos, cFill ), + inline SwTabDecimalPortion( const KSHORT nTabPosVal, const xub_Unicode cTab, + const xub_Unicode cFillChar = '\0' ) + : SwTabPortion( nTabPosVal, cFillChar ), mcTab(cTab), mnWidthOfPortionsUpTpDecimalPosition( USHRT_MAX ) { SetWhichPor( POR_TABDECIMAL ); } @@ -147,9 +147,9 @@ public: class SwAutoTabDecimalPortion : public SwTabDecimalPortion { public: - inline SwAutoTabDecimalPortion( const KSHORT nTabPos, const xub_Unicode cTab, - const xub_Unicode cFill = '\0' ) - : SwTabDecimalPortion( nTabPos, cTab, cFill ) + inline SwAutoTabDecimalPortion( const KSHORT nTabPosVal, const xub_Unicode cTab, + const xub_Unicode cFillChar = '\0' ) + : SwTabDecimalPortion( nTabPosVal, cTab, cFillChar ) { SetLen( 0 ); } virtual void Paint( const SwTxtPaintInfo &rInf ) const; }; |