summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/TDefTableHandler.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2013-07-05 10:21:27 +0200
committerMiklos Vajna <vmiklos@suse.cz>2013-07-05 10:28:47 +0200
commitf8c77bd35e88a04fb0985c6b9e72836e4614aded (patch)
tree20c1ac66ecc33b7863e75259658a185b262433ef /writerfilter/source/dmapper/TDefTableHandler.cxx
parent0279563fbe3c686d5c72eecd06544f3c7a43327a (diff)
writerfilter: PropertyMap::Insert's bIsTextProperty parameter is unused
Change-Id: I2d55043490f895ef439e88bcd1fed51b857255be
Diffstat (limited to 'writerfilter/source/dmapper/TDefTableHandler.cxx')
-rw-r--r--writerfilter/source/dmapper/TDefTableHandler.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/writerfilter/source/dmapper/TDefTableHandler.cxx b/writerfilter/source/dmapper/TDefTableHandler.cxx
index 79e72b09e683..04466f429f9e 100644
--- a/writerfilter/source/dmapper/TDefTableHandler.cxx
+++ b/writerfilter/source/dmapper/TDefTableHandler.cxx
@@ -227,7 +227,7 @@ PropertyMapPtr TDefTableHandler::getRowProperties() const
pSeparators[nBorder - 1].Position = nRelPos;
pSeparators[nBorder - 1].IsVisible = sal_True;
}
- pPropertyMap->Insert( PROP_TABLE_COLUMN_SEPARATORS, false, uno::makeAny( aSeparators ) );
+ pPropertyMap->Insert( PROP_TABLE_COLUMN_SEPARATORS, uno::makeAny( aSeparators ) );
}
return pPropertyMap;
@@ -246,20 +246,20 @@ void TDefTableHandler::fillCellProperties(
case 2: nVertOrient = text::VertOrientation::BOTTOM; break;
default:;
}
- pCellProperties->Insert( PROP_VERT_ORIENT, false, uno::makeAny( nVertOrient ) );
+ pCellProperties->Insert( PROP_VERT_ORIENT, uno::makeAny( nVertOrient ) );
}
if( m_aTopBorderLines.size() > nCell )
- pCellProperties->Insert( PROP_TOP_BORDER, false, uno::makeAny( m_aTopBorderLines[nCell] ) );
+ pCellProperties->Insert( PROP_TOP_BORDER, uno::makeAny( m_aTopBorderLines[nCell] ) );
if( m_aLeftBorderLines.size() > nCell )
- pCellProperties->Insert( PROP_LEFT_BORDER, false, uno::makeAny( m_aLeftBorderLines[nCell] ) );
+ pCellProperties->Insert( PROP_LEFT_BORDER, uno::makeAny( m_aLeftBorderLines[nCell] ) );
if( m_aBottomBorderLines.size() > nCell )
- pCellProperties->Insert( PROP_BOTTOM_BORDER, false, uno::makeAny( m_aBottomBorderLines[nCell] ) );
+ pCellProperties->Insert( PROP_BOTTOM_BORDER, uno::makeAny( m_aBottomBorderLines[nCell] ) );
if( m_aRightBorderLines.size() > nCell )
- pCellProperties->Insert( PROP_RIGHT_BORDER, false, uno::makeAny( m_aRightBorderLines[nCell] ) );
+ pCellProperties->Insert( PROP_RIGHT_BORDER, uno::makeAny( m_aRightBorderLines[nCell] ) );
if( m_aInsideHBorderLines.size() > nCell )
- pCellProperties->Insert( META_PROP_HORIZONTAL_BORDER, false, uno::makeAny( m_aInsideHBorderLines[nCell] ) );
+ pCellProperties->Insert( META_PROP_HORIZONTAL_BORDER, uno::makeAny( m_aInsideHBorderLines[nCell] ) );
if( m_aInsideVBorderLines.size() > nCell )
- pCellProperties->Insert( META_PROP_VERTICAL_BORDER, false, uno::makeAny( m_aInsideVBorderLines[nCell] ) );
+ pCellProperties->Insert( META_PROP_VERTICAL_BORDER, uno::makeAny( m_aInsideVBorderLines[nCell] ) );
}