diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-09-30 15:39:36 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-09-30 18:24:52 +0200 |
commit | c69ea1dd5a993c23d5be6a0ec40a7cac15fb2ecc (patch) | |
tree | f42237bfca21e78fb7d00fb84570f752850a2e19 /connectivity/source/inc | |
parent | 6571e77d03491090c9d3a4ef74295bd4cfc3fda4 (diff) |
use more concrete UNO type in file::OStatement_Base
Change-Id: I9ce6ed7768e8c79e6105152f3907a5468e8fb828
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174282
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Diffstat (limited to 'connectivity/source/inc')
-rw-r--r-- | connectivity/source/inc/file/FStatement.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/connectivity/source/inc/file/FStatement.hxx b/connectivity/source/inc/file/FStatement.hxx index 57ce0a2fc0de..52fbd3d2850f 100644 --- a/connectivity/source/inc/file/FStatement.hxx +++ b/connectivity/source/inc/file/FStatement.hxx @@ -36,6 +36,7 @@ #include <comphelper/propertycontainer.hxx> #include <file/fanalyzer.hxx> #include <TSortIndex.hxx> +#include <unotools/weakref.hxx> namespace connectivity::file { @@ -62,7 +63,7 @@ namespace connectivity::file std::vector<TAscendingOrder> m_aOrderbyAscending; css::sdbc::SQLWarning m_aLastWarning; - css::uno::WeakReference< css::sdbc::XResultSet> m_xResultSet; // The last ResultSet created + unotools::WeakReference< OResultSet> m_xResultSet; // The last ResultSet created css::uno::Reference< css::sdbc::XDatabaseMetaData> m_xDBMetaData; css::uno::Reference< css::container::XNameAccess> m_xColNames; // table columns // for this Statement |