Kaydet (Commit) db2d8301 authored tarafından Ulkem Kasapoglu's avatar Ulkem Kasapoglu Kaydeden (comit) Muhammet Kara

tdf#88205: Adapt uses of css::uno::Sequence to use initializer_list ctor

Change-Id: I09016a06110772379ddf8b15f14446346b850cd6
Reviewed-on: https://gerrit.libreoffice.org/57339
Tested-by: Jenkins
Reviewed-by: 's avatarMuhammet Kara <muhammet.kara@pardus.org.tr>
üst 860a9daf
......@@ -100,10 +100,7 @@ namespace pcr
css::uno::Sequence<OUString> OTabOrderDialog::getSupportedServiceNames_static()
{
css::uno::Sequence<OUString> aSupported(2);
aSupported.getArray()[0] = "com.sun.star.form.ui.TabOrderDialog";
aSupported.getArray()[1] = "com.sun.star.form.TabOrderDialog";
return aSupported;
return css::uno::Sequence<OUString>{ "com.sun.star.form.ui.TabOrderDialog", "com.sun.star.form.TabOrderDialog" };
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment