summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-04-20 23:46:30 +0200
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-04-27 14:00:44 +0200
commit6757781318bbd51386c763c6eefbef2835234481 (patch)
tree2ebb59eaa836f836175c2f076b4a806cccef1d67 /sw
parentcf94d27b7d0fae2215c55b3fa237ce93d402e764 (diff)
Constructor parameters are not used for this local class
Change-Id: Ib480540c4f1062acbebfa6a076c8d6df20746a99
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/xml/xmltble.cxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/sw/source/filter/xml/xmltble.cxx b/sw/source/filter/xml/xmltble.cxx
index 0c3f2828f6d9..9c1d6ea9b411 100644
--- a/sw/source/filter/xml/xmltble.cxx
+++ b/sw/source/filter/xml/xmltble.cxx
@@ -181,11 +181,7 @@ class SwXMLTableFrmFmtsSort_Impl
{
private:
SwXMLFrmFmts_Impl aFormatList;
-
public:
- SwXMLTableFrmFmtsSort_Impl ( sal_uInt16 /* nInit */, sal_uInt16 /*nGrow*/ )
- {}
-
bool AddRow( SwFrmFmt& rFrmFmt, const OUString& rNamePrefix, sal_uInt32 nLine );
bool AddCell( SwFrmFmt& rFrmFmt, const OUString& rNamePrefix,
sal_uInt32 nCol, sal_uInt32 nRow, sal_Bool bTop );
@@ -740,8 +736,8 @@ void SwXMLExport::ExportTableAutoStyles( const SwTableNode& rTblNd )
OUString sName( pTblFmt->GetName() );
SwXMLTableColumnsSortByWidth_Impl aExpCols;
- SwXMLTableFrmFmtsSort_Impl aExpRows( 10, 10 );
- SwXMLTableFrmFmtsSort_Impl aExpCells( 10, 10 );
+ SwXMLTableFrmFmtsSort_Impl aExpRows;
+ SwXMLTableFrmFmtsSort_Impl aExpCells;
SwXMLTableInfo_Impl aTblInfo( &rTbl );
ExportTableLinesAutoStyles( rTbl.GetTabLines(), nAbsWidth, nBaseWidth,
sName, aExpCols, aExpRows, aExpCells,