diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-08-31 20:32:58 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-08-31 21:44:10 +0200 |
commit | 70d9ae239bb4f5fbde135a7fe13d0a99c60d5172 (patch) | |
tree | a03e908a6b6ef6a9332d460aed4b9373d87142b4 /connectivity/source/inc/ado | |
parent | 39c6112b5b493eda042078447bf6c67bb7bd8a34 (diff) |
Use vector and replace m_aBatchList by m_aBatchVector
Change-Id: I7c2c529eb78679f9733374bf0785773684c728c4
Reviewed-on: https://gerrit.libreoffice.org/41770
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'connectivity/source/inc/ado')
-rw-r--r-- | connectivity/source/inc/ado/AStatement.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/inc/ado/AStatement.hxx b/connectivity/source/inc/ado/AStatement.hxx index bf16e48dff04..495578694ea4 100644 --- a/connectivity/source/inc/ado/AStatement.hxx +++ b/connectivity/source/inc/ado/AStatement.hxx @@ -32,7 +32,7 @@ #include <comphelper/proparrhlp.hxx> #include <comphelper/uno3.hxx> #include "ado/AConnection.hxx" -#include <list> +#include <vector> #include "ado/Awrapado.hxx" #include <com/sun/star/lang/XServiceInfo.hpp> @@ -62,7 +62,7 @@ namespace connectivity css::sdbc::SQLWarning m_aLastWarning; protected: - std::list< OUString> m_aBatchList; + std::vector< OUString> m_aBatchVector; css::uno::WeakReference< css::sdbc::XResultSet> m_xResultSet; // The last ResultSet created // for this Statement |