diff options
author | Noel Grandin <noelgrandin@collabora.co.uk> | 2024-11-07 12:04:48 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-11-07 14:31:03 +0100 |
commit | 8d0a0bc4d4bc9d6b453f98164c4ab33d0afa91f9 (patch) | |
tree | f4de4e04a634908b07c93dc812ca9280509b79f9 /connectivity/source/inc | |
parent | 2de45b85574063cfef3d6ccddc9efe959a8b1076 (diff) |
use more concrete UNO type in connectivity::ado
Change-Id: Ia9bc0e4aade832373def4460e44750be4415967d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176205
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Diffstat (limited to 'connectivity/source/inc')
-rw-r--r-- | connectivity/source/inc/ado/AStatement.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/connectivity/source/inc/ado/AStatement.hxx b/connectivity/source/inc/ado/AStatement.hxx index 625339917591..ce4369b347f2 100644 --- a/connectivity/source/inc/ado/AStatement.hxx +++ b/connectivity/source/inc/ado/AStatement.hxx @@ -29,6 +29,7 @@ #include <cppuhelper/compbase.hxx> #include <cppuhelper/basemutex.hxx> #include <comphelper/proparrhlp.hxx> +#include <unotools/weakref.hxx> #include <ado/AConnection.hxx> #include <string_view> #include <vector> @@ -59,7 +60,7 @@ namespace connectivity::ado protected: std::vector< OUString> m_aBatchVector; - css::uno::WeakReference< css::sdbc::XResultSet> m_xResultSet; // The last ResultSet created + unotools::WeakReference<OResultSet> m_xResultSet; // The last ResultSet created // for this Statement OConnection* m_pConnection;// The owning Connection object |