summaryrefslogtreecommitdiffstats
path: root/extensions/source/logging/logger.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2015-11-15 08:43:35 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-15 10:13:08 +0000
commit8e234c5b7d5bae66c544e581bee5770f3f83dd81 (patch)
tree7d78f03ce2231de4f727d1135449aeb8cba74e99 /extensions/source/logging/logger.cxx
parentcppcheck:stlIfStrFind (diff)
downloadcore-8e234c5b7d5bae66c544e581bee5770f3f83dd81.tar.gz
core-8e234c5b7d5bae66c544e581bee5770f3f83dd81.zip
use initialiser syntax for Sequence<OUString>
replaced using the script: git grep -lP 'Sequence.*OUString.*\(1\)' | xargs perl -0777 -pi -e "s/Sequence< OUString > (\w+)\(1\); .*\[0\] = (\S+);/Sequence< OUString > \1 { \2 };/g" Change-Id: I23688a91562051a8eed11fc2a85599545c285c34 Reviewed-on: https://gerrit.libreoffice.org/19967 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'extensions/source/logging/logger.cxx')
-rw-r--r--extensions/source/logging/logger.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/extensions/source/logging/logger.cxx b/extensions/source/logging/logger.cxx
index 2bafe5a625a8..e9b2944257b6 100644
--- a/extensions/source/logging/logger.cxx
+++ b/extensions/source/logging/logger.cxx
@@ -248,8 +248,7 @@ namespace logging
Sequence< OUString > SAL_CALL EventLogger::getSupportedServiceNames() throw(RuntimeException, std::exception)
{
- Sequence< OUString > aServiceNames(1);
- aServiceNames[0] = "com.sun.star.logging.Logger";
+ Sequence< OUString > aServiceNames { "com.sun.star.logging.Logger" };
return aServiceNames;
}
@@ -280,8 +279,7 @@ namespace logging
Sequence< OUString > SAL_CALL LoggerPool::getSupportedServiceNames_static()
{
- Sequence< OUString > aServiceNames(1);
- aServiceNames[0] = getSingletonName_static();
+ Sequence< OUString > aServiceNames { getSingletonName_static() };
return aServiceNames;
}