diff options
author | Rosen <rosen@live.com> | 2016-08-21 23:41:12 +0530 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-08-22 06:31:40 +0000 |
commit | 308d541ed50c3ce3234a4a8ae86c968a70409d63 (patch) | |
tree | 5fea95d242eed550070ea331f699b7ceee38301d /comphelper | |
parent | 57574c988c9efda1b9c72338378973a6ce0741e8 (diff) |
tdf88205 Adapt uses of css::uno::Sequence to use initializer_list ctor
Change-Id: I7a07552fb7f7c6dc66178be5db249007da49eb40
Reviewed-on: https://gerrit.libreoffice.org/28280
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/property/opropertybag.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/comphelper/source/property/opropertybag.cxx b/comphelper/source/property/opropertybag.cxx index fb694398d9b5..066052b3f1d3 100644 --- a/comphelper/source/property/opropertybag.cxx +++ b/comphelper/source/property/opropertybag.cxx @@ -124,8 +124,7 @@ namespace comphelper Sequence< OUString > SAL_CALL OPropertyBag::getSupportedServiceNames( ) throw (RuntimeException, std::exception) { - Sequence< OUString > aServices { "com.sun.star.beans.PropertyBag" }; - return aServices; + return { "com.sun.star.beans.PropertyBag" }; } void OPropertyBag::fireEvents( |