summaryrefslogtreecommitdiff
path: root/reportdesign/source/ui/misc/RptUndo.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign/source/ui/misc/RptUndo.cxx')
-rw-r--r--reportdesign/source/ui/misc/RptUndo.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/reportdesign/source/ui/misc/RptUndo.cxx b/reportdesign/source/ui/misc/RptUndo.cxx
index dec9f097b337..2c5b9697997e 100644
--- a/reportdesign/source/ui/misc/RptUndo.cxx
+++ b/reportdesign/source/ui/misc/RptUndo.cxx
@@ -163,7 +163,7 @@ void OSectionUndo::collectControls(const uno::Reference< report::XSection >& _xS
for(;pIter != pEnd;++pIter)
{
if ( 0 == (pIter->Attributes & beans::PropertyAttribute::READONLY) )
- m_aValues.push_back(::std::pair< OUString ,uno::Any>(pIter->Name,_xSection->getPropertyValue(pIter->Name)));
+ m_aValues.emplace_back(pIter->Name,_xSection->getPropertyValue(pIter->Name));
}
lcl_collectElements(_xSection,m_aControls);
}