diff options
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/filter/xml/xmlExport.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/filter/xml/xmlfilter.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/browser/exsrcbrw.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/browser/unodatbr.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/uno/AdvancedSettingsDlg.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/uno/DBTypeWizDlg.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/uno/TableFilterDlg.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/uno/UserSettingsDlg.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/uno/admindlg.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/uno/copytablewizard.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/uno/unosqlmessage.cxx | 3 |
12 files changed, 12 insertions, 24 deletions
diff --git a/dbaccess/source/filter/xml/xmlExport.cxx b/dbaccess/source/filter/xml/xmlExport.cxx index 220349b7cba1..25fafb18dea2 100644 --- a/dbaccess/source/filter/xml/xmlExport.cxx +++ b/dbaccess/source/filter/xml/xmlExport.cxx @@ -256,8 +256,7 @@ OUString ODBExport::getImplementationName_Static() css::uno::Sequence<OUString> ODBExport::getSupportedServiceNames_Static() throw (css::uno::RuntimeException) { - css::uno::Sequence<OUString> s(1); - s[0] = "com.sun.star.document.ExportFilter"; + css::uno::Sequence<OUString> s { "com.sun.star.document.ExportFilter" }; return s; } diff --git a/dbaccess/source/filter/xml/xmlfilter.cxx b/dbaccess/source/filter/xml/xmlfilter.cxx index 1c24ca3e8ea4..702ac846d6f3 100644 --- a/dbaccess/source/filter/xml/xmlfilter.cxx +++ b/dbaccess/source/filter/xml/xmlfilter.cxx @@ -233,8 +233,7 @@ OUString ODBFilter::getImplementationName_Static() css::uno::Sequence<OUString> ODBFilter::getSupportedServiceNames_Static() throw (css::uno::RuntimeException) { - css::uno::Sequence<OUString> s(1); - s[0] = "com.sun.star.document.ImportFilter"; + css::uno::Sequence<OUString> s { "com.sun.star.document.ImportFilter" }; return s; } diff --git a/dbaccess/source/ui/browser/exsrcbrw.cxx b/dbaccess/source/ui/browser/exsrcbrw.cxx index 1b5d239eb9eb..c3d2195a2262 100644 --- a/dbaccess/source/ui/browser/exsrcbrw.cxx +++ b/dbaccess/source/ui/browser/exsrcbrw.cxx @@ -85,8 +85,7 @@ OUString SbaExternalSourceBrowser::getImplementationName_Static() throw(RuntimeE css::uno::Sequence<OUString> SbaExternalSourceBrowser::getSupportedServiceNames_Static() throw(RuntimeException) { - css::uno::Sequence<OUString> aSupported(1); - aSupported[0] = "com.sun.star.sdb.FormGridView"; + css::uno::Sequence<OUString> aSupported { "com.sun.star.sdb.FormGridView" }; return aSupported; } diff --git a/dbaccess/source/ui/browser/unodatbr.cxx b/dbaccess/source/ui/browser/unodatbr.cxx index fd349e989ffe..3d235aa31c8c 100644 --- a/dbaccess/source/ui/browser/unodatbr.cxx +++ b/dbaccess/source/ui/browser/unodatbr.cxx @@ -197,8 +197,7 @@ OUString SbaTableQueryBrowser::getImplementationName_Static() throw(RuntimeExcep css::uno::Sequence<OUString> SbaTableQueryBrowser::getSupportedServiceNames_Static() throw(RuntimeException) { - css::uno::Sequence<OUString> aSupported(1); - aSupported[0] = "com.sun.star.sdb.DataSourceBrowser"; + css::uno::Sequence<OUString> aSupported { "com.sun.star.sdb.DataSourceBrowser" }; return aSupported; } diff --git a/dbaccess/source/ui/uno/AdvancedSettingsDlg.cxx b/dbaccess/source/ui/uno/AdvancedSettingsDlg.cxx index 412397f34211..300dac9ad222 100644 --- a/dbaccess/source/ui/uno/AdvancedSettingsDlg.cxx +++ b/dbaccess/source/ui/uno/AdvancedSettingsDlg.cxx @@ -97,8 +97,7 @@ namespace dbaui css::uno::Sequence<OUString> OAdvancedSettingsDialog::getSupportedServiceNames_Static() throw(RuntimeException) { - css::uno::Sequence<OUString> aSupported(1); - aSupported[0] = "com.sun.star.sdb.AdvancedDatabaseSettingsDialog"; + css::uno::Sequence<OUString> aSupported { "com.sun.star.sdb.AdvancedDatabaseSettingsDialog" }; return aSupported; } diff --git a/dbaccess/source/ui/uno/DBTypeWizDlg.cxx b/dbaccess/source/ui/uno/DBTypeWizDlg.cxx index d39aec3906cd..c8228a01f55a 100644 --- a/dbaccess/source/ui/uno/DBTypeWizDlg.cxx +++ b/dbaccess/source/ui/uno/DBTypeWizDlg.cxx @@ -69,8 +69,7 @@ css::uno::Sequence<OUString> SAL_CALL ODBTypeWizDialog::getSupportedServiceNames css::uno::Sequence<OUString> ODBTypeWizDialog::getSupportedServiceNames_Static() throw(RuntimeException) { - css::uno::Sequence<OUString> aSupported(1); - aSupported[0] = "com.sun.star.sdb.DataSourceTypeChangeDialog"; + css::uno::Sequence<OUString> aSupported { "com.sun.star.sdb.DataSourceTypeChangeDialog" }; return aSupported; } diff --git a/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx b/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx index d4547ba8cb97..26f34a031b1b 100644 --- a/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx +++ b/dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx @@ -84,8 +84,7 @@ css::uno::Sequence<OUString> SAL_CALL ODBTypeWizDialogSetup::getSupportedService css::uno::Sequence<OUString> ODBTypeWizDialogSetup::getSupportedServiceNames_Static() throw(RuntimeException) { - css::uno::Sequence<OUString> aSupported(1); - aSupported[0] = "com.sun.star.sdb.DatabaseWizardDialog"; + css::uno::Sequence<OUString> aSupported { "com.sun.star.sdb.DatabaseWizardDialog" }; return aSupported; } diff --git a/dbaccess/source/ui/uno/TableFilterDlg.cxx b/dbaccess/source/ui/uno/TableFilterDlg.cxx index 203f924e9a2d..4810894a97db 100644 --- a/dbaccess/source/ui/uno/TableFilterDlg.cxx +++ b/dbaccess/source/ui/uno/TableFilterDlg.cxx @@ -69,8 +69,7 @@ css::uno::Sequence<OUString> SAL_CALL OTableFilterDialog::getSupportedServiceNam css::uno::Sequence<OUString> OTableFilterDialog::getSupportedServiceNames_Static() throw(RuntimeException) { - css::uno::Sequence<OUString> aSupported(1); - aSupported[0] = "com.sun.star.sdb.TableFilterDialog"; + css::uno::Sequence<OUString> aSupported { "com.sun.star.sdb.TableFilterDialog" }; return aSupported; } diff --git a/dbaccess/source/ui/uno/UserSettingsDlg.cxx b/dbaccess/source/ui/uno/UserSettingsDlg.cxx index 22b66f5b59e8..96f4781c3643 100644 --- a/dbaccess/source/ui/uno/UserSettingsDlg.cxx +++ b/dbaccess/source/ui/uno/UserSettingsDlg.cxx @@ -69,8 +69,7 @@ css::uno::Sequence<OUString> SAL_CALL OUserSettingsDialog::getSupportedServiceNa css::uno::Sequence<OUString> OUserSettingsDialog::getSupportedServiceNames_Static() throw(RuntimeException) { - css::uno::Sequence<OUString> aSupported(1); - aSupported[0] = "com.sun.star.sdb.UserAdministrationDialog"; + css::uno::Sequence<OUString> aSupported { "com.sun.star.sdb.UserAdministrationDialog" }; return aSupported; } diff --git a/dbaccess/source/ui/uno/admindlg.cxx b/dbaccess/source/ui/uno/admindlg.cxx index 9b854eb425ca..1366ed7e8f9c 100644 --- a/dbaccess/source/ui/uno/admindlg.cxx +++ b/dbaccess/source/ui/uno/admindlg.cxx @@ -69,8 +69,7 @@ css::uno::Sequence<OUString> SAL_CALL ODataSourcePropertyDialog::getSupportedSer css::uno::Sequence<OUString> ODataSourcePropertyDialog::getSupportedServiceNames_Static() throw(RuntimeException) { - css::uno::Sequence<OUString> aSupported(1); - aSupported[0] = "com.sun.star.sdb.DatasourceAdministrationDialog"; + css::uno::Sequence<OUString> aSupported { "com.sun.star.sdb.DatasourceAdministrationDialog" }; return aSupported; } diff --git a/dbaccess/source/ui/uno/copytablewizard.cxx b/dbaccess/source/ui/uno/copytablewizard.cxx index 8fd501275a64..177d22140c2c 100644 --- a/dbaccess/source/ui/uno/copytablewizard.cxx +++ b/dbaccess/source/ui/uno/copytablewizard.cxx @@ -430,8 +430,7 @@ css::uno::Sequence<OUString> SAL_CALL CopyTableWizard::getSupportedServiceNames( css::uno::Sequence<OUString> CopyTableWizard::getSupportedServiceNames_Static() throw(RuntimeException) { - css::uno::Sequence<OUString> aSupported(1); - aSupported.getArray()[0] = "com.sun.star.sdb.application.CopyTableWizard"; + css::uno::Sequence<OUString> aSupported { "com.sun.star.sdb.application.CopyTableWizard" }; return aSupported; } diff --git a/dbaccess/source/ui/uno/unosqlmessage.cxx b/dbaccess/source/ui/uno/unosqlmessage.cxx index 49b3d8310674..554a12ae83ad 100644 --- a/dbaccess/source/ui/uno/unosqlmessage.cxx +++ b/dbaccess/source/ui/uno/unosqlmessage.cxx @@ -80,8 +80,7 @@ css::uno::Sequence<OUString> SAL_CALL OSQLMessageDialog::getSupportedServiceName css::uno::Sequence<OUString> OSQLMessageDialog::getSupportedServiceNames_Static() throw(RuntimeException) { - css::uno::Sequence<OUString> aSupported(1); - aSupported.getArray()[0] = "com.sun.star.sdb.ErrorMessageDialog"; + css::uno::Sequence<OUString> aSupported { "com.sun.star.sdb.ErrorMessageDialog" }; return aSupported; } |