summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/firebird/PreparedStatement.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-09-12 10:18:26 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-09-12 14:11:00 +0200
commitd0d84eba568aaa9aef6ad812f19410946a274640 (patch)
treef846ca71ff9305fa19f895aae6ee3e346d20502f /connectivity/source/drivers/firebird/PreparedStatement.hxx
parent9714b19590f651cbd48ae763b5a9558dd1e9e972 (diff)
use more concrete UNO classes in connectivity
Change-Id: I5c70278add0aa0b0c4a7680c6615b75b688f2180 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173247 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Jenkins
Diffstat (limited to 'connectivity/source/drivers/firebird/PreparedStatement.hxx')
-rw-r--r--connectivity/source/drivers/firebird/PreparedStatement.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/firebird/PreparedStatement.hxx b/connectivity/source/drivers/firebird/PreparedStatement.hxx
index 42e540664dda8..96f687c381232 100644
--- a/connectivity/source/drivers/firebird/PreparedStatement.hxx
+++ b/connectivity/source/drivers/firebird/PreparedStatement.hxx
@@ -33,7 +33,7 @@
namespace connectivity::firebird
{
-
+ class OResultSetMetaData;
class OBoundParam;
typedef ::cppu::ImplHelper5< css::sdbc::XPreparedStatement,
css::sdbc::XParameters,
@@ -46,7 +46,7 @@ namespace connectivity::firebird
{
protected:
OUString m_sSqlStatement;
- css::uno::Reference< css::sdbc::XResultSetMetaData > m_xMetaData;
+ rtl::Reference<OResultSetMetaData> m_xMetaData;
XSQLDA* m_pOutSqlda;
XSQLDA* m_pInSqlda;