diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-08 11:32:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-09 10:42:56 +0200 |
commit | ea8c12b8cc03ed259389ac267edd459844634767 (patch) | |
tree | c935ac790e826e790133c3b22aeaca32edb52298 /sw/inc/swtable.hxx | |
parent | 013e34d875aeb75d9660af7c18967c2d468cbd74 (diff) |
loplugin:checkunusedparams in sw(part4)
Change-Id: Ia264c192ac02a07bba67a66196899d13b19f83f0
Reviewed-on: https://gerrit.libreoffice.org/37386
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/inc/swtable.hxx')
-rw-r--r-- | sw/inc/swtable.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/swtable.hxx b/sw/inc/swtable.hxx index e2508ec117ac..4e33cdf3b7c2 100644 --- a/sw/inc/swtable.hxx +++ b/sw/inc/swtable.hxx @@ -166,7 +166,7 @@ private: bool OldMerge( SwDoc*, const SwSelBoxes&, SwTableBox*, SwUndoTableMerge* ); bool OldSplitRow( SwDoc*, const SwSelBoxes&, sal_uInt16, bool ); bool NewMerge( SwDoc*, const SwSelBoxes&, const SwSelBoxes& rMerged, - SwTableBox*, SwUndoTableMerge* ); + SwUndoTableMerge* ); bool NewSplitRow( SwDoc*, const SwSelBoxes&, sal_uInt16, bool ); SwBoxSelection* CollectBoxSelection( const SwPaM& rPam ) const; void InsertSpannedRow( SwDoc* pDoc, sal_uInt16 nIdx, sal_uInt16 nCnt ); @@ -241,8 +241,8 @@ public: #ifdef DBG_UTIL m_bDontChangeModel = true; #endif - return m_bNewModel ? NewMerge( pDoc, rBoxes, rMerged, pMergeBox, pUndo ) : - OldMerge( pDoc, rBoxes, pMergeBox, pUndo ); + return m_bNewModel ? NewMerge( pDoc, rBoxes, rMerged, pUndo ) : + OldMerge( pDoc, rBoxes, pMergeBox, pUndo ); } bool SplitRow( SwDoc* pDoc, const SwSelBoxes& rBoxes, sal_uInt16 nCnt, bool bSameHeight ) |