summaryrefslogtreecommitdiff
path: root/mysqlc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2015-11-15 13:17:00 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-15 12:20:39 +0000
commit96c26b0d9d10fa9bac3695222980d7145f0342d7 (patch)
treed2d2b4e60e8ec98ff4025abfad42be06d29b3c13 /mysqlc
parent25aec383f95fded43b3fe5fc588b4ebdc6d7d272 (diff)
use initialiser for Sequence<OUString>
using variations of: git grep -lP 'Sequence.*OUString.*\(\s*1\s*\)' | xargs perl -0777 -pi -e "s/Sequence<OUString> (\w+)\(1\)\; \s*OUString\* pArray.*; .*\[0\]\s*=\s*(\S+)\;/Sequence<OUString> \1 { \2 };/g" Change-Id: I03c64334ff30ee14dce0d17b67f5122a3893bbe3 Reviewed-on: https://gerrit.libreoffice.org/19971 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'mysqlc')
-rw-r--r--mysqlc/source/mysqlc_connection.cxx3
-rw-r--r--mysqlc/source/mysqlc_driver.cxx3
-rw-r--r--mysqlc/source/mysqlc_preparedstatement.cxx3
-rw-r--r--mysqlc/source/mysqlc_statement.cxx3
4 files changed, 4 insertions, 8 deletions
diff --git a/mysqlc/source/mysqlc_connection.cxx b/mysqlc/source/mysqlc_connection.cxx
index 5c3fd7c2cb59..44cee42733dc 100644
--- a/mysqlc/source/mysqlc_connection.cxx
+++ b/mysqlc/source/mysqlc_connection.cxx
@@ -219,8 +219,7 @@ rtl::OUString OConnection::getImplementationName() throw (css::uno::RuntimeExcep
css::uno::Sequence<rtl::OUString> OConnection::getSupportedServiceNames()
throw (css::uno::RuntimeException, std::exception)
{
- css::uno::Sequence<rtl::OUString> s(1);
- s[0] = "com.sun.star.sdbc.Connection";
+ css::uno::Sequence<OUString> s { "com.sun.star.sdbc.Connection" };
return s;
}
diff --git a/mysqlc/source/mysqlc_driver.cxx b/mysqlc/source/mysqlc_driver.cxx
index 3a31685d9c2e..ce2c363fb74a 100644
--- a/mysqlc/source/mysqlc_driver.cxx
+++ b/mysqlc/source/mysqlc_driver.cxx
@@ -85,8 +85,7 @@ Sequence< rtl::OUString > MysqlCDriver::getSupportedServiceNames_Static()
OSL_TRACE("MysqlCDriver::getSupportedServiceNames_Static");
// which service is supported
// for more information @see com.sun.star.sdbc.Driver
- Sequence< rtl::OUString > aSNS(1);
- aSNS[0] = "com.sun.star.sdbc.Driver";
+ Sequence<OUString> aSNS { "com.sun.star.sdbc.Driver" };
return aSNS;
}
diff --git a/mysqlc/source/mysqlc_preparedstatement.cxx b/mysqlc/source/mysqlc_preparedstatement.cxx
index 96d756f3ef4d..cfc304233e8b 100644
--- a/mysqlc/source/mysqlc_preparedstatement.cxx
+++ b/mysqlc/source/mysqlc_preparedstatement.cxx
@@ -66,8 +66,7 @@ rtl::OUString OPreparedStatement::getImplementationName()
css::uno::Sequence<rtl::OUString> OPreparedStatement::getSupportedServiceNames()
throw (css::uno::RuntimeException, std::exception)
{
- css::uno::Sequence<rtl::OUString> s(1);
- s[0] = "com.sun.star.sdbc.PreparedStatement";
+ css::uno::Sequence<OUString> s { "com.sun.star.sdbc.PreparedStatement" };
return s;
}
diff --git a/mysqlc/source/mysqlc_statement.cxx b/mysqlc/source/mysqlc_statement.cxx
index 859f7a929a82..d9e58b0784e9 100644
--- a/mysqlc/source/mysqlc_statement.cxx
+++ b/mysqlc/source/mysqlc_statement.cxx
@@ -392,8 +392,7 @@ rtl::OUString OStatement::getImplementationName() throw (css::uno::RuntimeExcept
css::uno::Sequence<rtl::OUString> OStatement::getSupportedServiceNames()
throw (css::uno::RuntimeException, std::exception)
{
- css::uno::Sequence<rtl::OUString> s(1);
- s[0] = "com.sun.star.sdbc.Statement";
+ css::uno::Sequence<OUString> s { "com.sun.star.sdbc.Statement" };
return s;
}