summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/TablePropertiesHandler.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter/source/dmapper/TablePropertiesHandler.cxx')
-rw-r--r--writerfilter/source/dmapper/TablePropertiesHandler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/TablePropertiesHandler.cxx b/writerfilter/source/dmapper/TablePropertiesHandler.cxx
index e8a7aff4076d..295139583334 100644
--- a/writerfilter/source/dmapper/TablePropertiesHandler.cxx
+++ b/writerfilter/source/dmapper/TablePropertiesHandler.cxx
@@ -195,7 +195,7 @@ namespace dmapper {
{
beans::PropertyValue aValue;
aValue.Name = "vAlign";
- aValue.Value = uno::makeAny(aVertOrient);
+ aValue.Value <<= aVertOrient;
m_pCurrentInteropGrabBag->push_back(aValue);
}
}
@@ -369,7 +369,7 @@ namespace dmapper {
{
beans::PropertyValue aValue;
aValue.Name = (nSprmId == NS_ooxml::LN_CT_TblPrBase_tblStyleRowBandSize ? OUString("tblStyleRowBandSize") : OUString("tblStyleColBandSize"));
- aValue.Value = uno::makeAny(nIntValue);
+ aValue.Value <<= nIntValue;
m_pCurrentInteropGrabBag->push_back(aValue);
}
break;