Kaydet (Commit) 833d952a authored tarafından nadith's avatar nadith Kaydeden (comit) Noel Grandin

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

Change-Id: I4abcff5e1bf050bd4e4cf0695f196c418d8229ef
Reviewed-on: https://gerrit.libreoffice.org/29778Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
Tested-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst dd5e0814
...@@ -811,10 +811,7 @@ OUString SAL_CALL OResultSet::getImplementationName() throw ( RuntimeException, ...@@ -811,10 +811,7 @@ OUString SAL_CALL OResultSet::getImplementationName() throw ( RuntimeException,
Sequence< OUString > SAL_CALL OResultSet::getSupportedServiceNames() Sequence< OUString > SAL_CALL OResultSet::getSupportedServiceNames()
throw( RuntimeException, std::exception) throw( RuntimeException, std::exception)
{ {
Sequence< OUString > aSupported(2); return {"com.sun.star.sdbc.ResultSet","com.sun.star.sdbcx.ResultSet"};
aSupported[0] = "com.sun.star.sdbc.ResultSet";
aSupported[1] = "com.sun.star.sdbcx.ResultSet";
return aSupported;
} }
sal_Bool SAL_CALL OResultSet::supportsService(const OUString& _rServiceName) sal_Bool SAL_CALL OResultSet::supportsService(const OUString& _rServiceName)
......
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