summaryrefslogtreecommitdiffstats
path: root/dbaccess
diff options
context:
space:
mode:
authorAbhyudaya Sharma <sharmaabhyudaya@gmail.com>2018-05-11 15:43:48 +0530
committerJulien Nabet <serval2412@yahoo.fr>2018-05-11 19:25:40 +0200
commit95d5fc76defa9cba9e69b9eac4e732c60c516eb0 (patch)
tree34dddb0e71c9e63645c36809be8ac0f27f04bbd3 /dbaccess
parentsw: rename SwTextNode::IsSymbol() to reduce overloading (diff)
downloadcore-95d5fc76defa9cba9e69b9eac4e732c60c516eb0.tar.gz
core-95d5fc76defa9cba9e69b9eac4e732c60c516eb0.zip
tdf#96099 Remove trivial StringVector typedef
Change-Id: I2924447a61f592f2c4da1c5b2e4940d30f4a1307 Reviewed-on: https://gerrit.libreoffice.org/54125 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/inc/dsntypes.hxx5
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;