summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/PageMasterImportContext.cxx3
-rw-r--r--xmloff/source/text/txtstyli.cxx3
2 files changed, 2 insertions, 4 deletions
diff --git a/xmloff/source/style/PageMasterImportContext.cxx b/xmloff/source/style/PageMasterImportContext.cxx
index 5c93fe68bd34..b8b0f93197ab 100644
--- a/xmloff/source/style/PageMasterImportContext.cxx
+++ b/xmloff/source/style/PageMasterImportContext.cxx
@@ -280,8 +280,7 @@ void PageStyleContext::FillPropertySet(const uno::Reference<beans::XPropertySet
}
catch(::com::sun::star::lang::IllegalArgumentException& e)
{
- Sequence< rtl::OUString > aSeq(1);
- aSeq[0] = sStyleName;
+ Sequence<OUString> aSeq { sStyleName };
GetImport().SetError(
XMLERROR_STYLE_PROP_VALUE | XMLERROR_FLAG_WARNING,
aSeq,e.Message,nullptr);
diff --git a/xmloff/source/text/txtstyli.cxx b/xmloff/source/text/txtstyli.cxx
index 9e2f8a93e397..17a4b0ce5e14 100644
--- a/xmloff/source/text/txtstyli.cxx
+++ b/xmloff/source/text/txtstyli.cxx
@@ -590,8 +590,7 @@ void XMLTextStyleContext::FillPropertySet(
}
catch(::com::sun::star::lang::IllegalArgumentException& e)
{
- Sequence< rtl::OUString > aSeq(1);
- aSeq[0] = sStyleName;
+ Sequence<OUString> aSeq { sStyleName };
GetImport().SetError(XMLERROR_STYLE_PROP_VALUE | XMLERROR_FLAG_WARNING, aSeq, e.Message, nullptr);
}
break;