[Libreoffice-commits] core.git: dbaccess/source
Abhyudaya Sharma
sharmaabhyudaya at gmail.com
Fri May 11 17:26:04 UTC 2018
dbaccess/source/inc/dsntypes.hxx | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
New commits:
commit 95d5fc76defa9cba9e69b9eac4e732c60c516eb0
Author: Abhyudaya Sharma <sharmaabhyudaya at gmail.com>
Date: Fri May 11 15:43:48 2018 +0530
tdf#96099 Remove trivial StringVector typedef
Change-Id: I2924447a61f592f2c4da1c5b2e4940d30f4a1307
Reviewed-on: https://gerrit.libreoffice.org/54125
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
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;
More information about the Libreoffice-commits
mailing list