diff options
author | Abhyudaya Sharma <sharmaabhyudaya@gmail.com> | 2018-06-04 11:10:59 +0530 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-06-07 07:28:54 +0200 |
commit | 251cb2a7b8b6c1f3fa6335911f0df38b23765da2 (patch) | |
tree | 6e060d9231b91c7cd37ec4d4b779adf88295a634 /ucb | |
parent | b292a27698e85fd9d60c03613c3b0c67835c4dc1 (diff) |
tdf#96099 Remove std::vector typedefs
Change-Id: Ic7e1cecaecadf3f9ebfa183727d61046dd87e473
Reviewed-on: https://gerrit.libreoffice.org/55260
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/ftp/ftpresultsetbase.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ucb/source/ucp/ftp/ftpresultsetbase.hxx b/ucb/source/ucp/ftp/ftpresultsetbase.hxx index aae070a6a38e..94105862e55e 100644 --- a/ucb/source/ucp/ftp/ftpresultsetbase.hxx +++ b/ucb/source/ucp/ftp/ftpresultsetbase.hxx @@ -391,11 +391,10 @@ namespace ftp { IdentSet; typedef std::vector< css::uno::Reference< css::sdbc::XRow > > ItemSet; - typedef std::vector< OUString > PathSet; IdentSet m_aIdents; ItemSet m_aItems; - PathSet m_aPath; + std::vector<OUString> m_aPath; css::uno::Sequence< css::beans::Property > m_sProperty; |