From 70d9ae239bb4f5fbde135a7fe13d0a99c60d5172 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Thu, 31 Aug 2017 20:32:58 +0200 Subject: Use vector and replace m_aBatchList by m_aBatchVector Change-Id: I7c2c529eb78679f9733374bf0785773684c728c4 Reviewed-on: https://gerrit.libreoffice.org/41770 Tested-by: Jenkins Reviewed-by: Julien Nabet --- mysqlc/source/mysqlc_statement.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mysqlc/source/mysqlc_statement.hxx') diff --git a/mysqlc/source/mysqlc_statement.hxx b/mysqlc/source/mysqlc_statement.hxx index 02533fabe8ea..b7357d27ecb7 100644 --- a/mysqlc/source/mysqlc_statement.hxx +++ b/mysqlc/source/mysqlc_statement.hxx @@ -34,7 +34,7 @@ #include #include -#include +#include namespace connectivity { @@ -71,7 +71,7 @@ namespace connectivity SQLWarning m_aLastWarning; protected: - ::std::list< rtl::OUString> m_aBatchList; + ::std::vector< rtl::OUString> m_aBatchVector; OConnection* m_pConnection; // The owning Connection object -- cgit