diff options
-rw-r--r-- | dbaccess/source/inc/dsntypes.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dbaccess/source/inc/dsntypes.hxx b/dbaccess/source/inc/dsntypes.hxx index e44ead53c805..fe64a933d77e 100644 --- a/dbaccess/source/inc/dsntypes.hxx +++ b/dbaccess/source/inc/dsntypes.hxx @@ -100,10 +100,9 @@ enum DATASOURCE_TYPE // ODsnTypeCollection class OOO_DLLPUBLIC_DBA ODsnTypeCollection final { - typedef std::vector<OUString> StringVector; - StringVector m_aDsnTypesDisplayNames; /// user readable names for the datasource types - StringVector m_aDsnPrefixes; /// DSN prefixes which determine the type of a datasource + std::vector<OUString> m_aDsnTypesDisplayNames; /// user readable names for the datasource types + std::vector<OUString> m_aDsnPrefixes; /// DSN prefixes which determine the type of a datasource ::connectivity::DriversConfig m_aDriverConfig; css::uno::Reference< css::uno::XComponentContext > m_xContext; |