diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-12-23 15:15:36 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-12-23 15:31:04 +0100 |
commit | 68aecf0dd81b6660e78e8dd758ec9431727f4f0b (patch) | |
tree | b59c2483d92a2a81dbd8523f795c53eb68818448 /sw/source | |
parent | 66b338b4f9fa13f69e69a8c0e8a3ea06e49fd764 (diff) |
remove unused variables [-Werror,-Wunused-private-field]
Change-Id: I3cb08dd52c5a34be6585ac9fc0c4b6bb04b6ae8c
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/text/porexp.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/text/porexp.hxx | 1 | ||||
-rw-r--r-- | sw/source/core/text/porftn.hxx | 3 | ||||
-rw-r--r-- | sw/source/core/text/txtftn.cxx | 7 |
4 files changed, 5 insertions, 8 deletions
diff --git a/sw/source/core/text/porexp.cxx b/sw/source/core/text/porexp.cxx index 0bb0f7d158e0..b5aa30f4cb88 100644 --- a/sw/source/core/text/porexp.cxx +++ b/sw/source/core/text/porexp.cxx @@ -252,7 +252,7 @@ void SwBlankPortion::HandlePortion( SwPortionHandler& rPH ) const *************************************************************************/ SwPostItsPortion::SwPostItsPortion( sal_Bool bScrpt ) - : nViewWidth(0), bScript( bScrpt ) + : bScript( bScrpt ) { nLineLength = 1; SetWhichPor( POR_POSTITS ); diff --git a/sw/source/core/text/porexp.hxx b/sw/source/core/text/porexp.hxx index 33506bfcc80c..cb7aa02ec450 100644 --- a/sw/source/core/text/porexp.hxx +++ b/sw/source/core/text/porexp.hxx @@ -79,7 +79,6 @@ public: class SwPostItsPortion : public SwExpandPortion { - KSHORT nViewWidth; sal_Bool bScript; public: SwPostItsPortion( sal_Bool bScrpt ); diff --git a/sw/source/core/text/porftn.hxx b/sw/source/core/text/porftn.hxx index 75b660f5cc0b..d342eb317592 100644 --- a/sw/source/core/text/porftn.hxx +++ b/sw/source/core/text/porftn.hxx @@ -30,14 +30,13 @@ class SwTxtFtn; class SwFtnPortion : public SwFldPortion { - SwTxtFrm *pFrm; // To be able to call RemoveFtn in the dtor SwTxtFtn *pFtn; KSHORT nOrigHeight; // #i98418# bool mbPreferredScriptTypeSet; sal_uInt8 mnPreferredScriptType; public: - SwFtnPortion( const XubString &rExpand, SwTxtFrm *pFrm, SwTxtFtn *pFtn, + SwFtnPortion( const XubString &rExpand, SwTxtFtn *pFtn, KSHORT nOrig = KSHRT_MAX ); inline KSHORT& Orig() { return nOrigHeight; } diff --git a/sw/source/core/text/txtftn.cxx b/sw/source/core/text/txtftn.cxx index 0c3f056e7471..b4aa5efd45b4 100644 --- a/sw/source/core/text/txtftn.cxx +++ b/sw/source/core/text/txtftn.cxx @@ -850,7 +850,7 @@ SwFtnPortion *SwTxtFormatter::NewFtnPortion( SwTxtFormatInfo &rInf, SwDoc *pDoc = pFrm->GetNode()->GetDoc(); if( rInf.IsTest() ) - return new SwFtnPortion( rFtn.GetViewNumStr( *pDoc ), pFrm, pFtn ); + return new SwFtnPortion( rFtn.GetViewNumStr( *pDoc ), pFtn ); SWAP_IF_SWAPPED( pFrm ) @@ -970,7 +970,7 @@ SwFtnPortion *SwTxtFormatter::NewFtnPortion( SwTxtFormatInfo &rInf, } // Endlich: FtnPortion anlegen und raus hier... SwFtnPortion *pRet = new SwFtnPortion( rFtn.GetViewNumStr( *pDoc ), - pFrm, pFtn, nReal ); + pFtn, nReal ); rInf.SetFtnInside( true ); UNDO_SWAP( pFrm ) @@ -1401,10 +1401,9 @@ SwFtnSave::~SwFtnSave() * SwFtnPortion::SwFtnPortion() *************************************************************************/ -SwFtnPortion::SwFtnPortion( const XubString &rExpand, SwTxtFrm *pFrame, +SwFtnPortion::SwFtnPortion( const XubString &rExpand, SwTxtFtn *pFootn, KSHORT nReal ) : SwFldPortion( rExpand, 0 ) - , pFrm(pFrame) , pFtn(pFootn) , nOrigHeight( nReal ) // #i98418# |