summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-30 11:31:46 +0200
committerNoel Grandin <noel@peralex.com>2015-10-30 11:31:46 +0200
commitf8767ea9e53fda2ab144c7edbee75582b0391f2c (patch)
tree8a675e46eb93a137263d5052101620315a865ac3 /connectivity
parentb460792abc90a06489f45501759936046daf3607 (diff)
fix OSX build
after my commit cb4fa1d1e2e61b686442a9d26220c0f1a6e1d4e7 "use uno::Reference::set method instead of assignment" Change-Id: Iecbcd2ffd521913a63374a56c5179065cca42f09
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/macab/MacabStatement.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/macab/MacabStatement.cxx b/connectivity/source/drivers/macab/MacabStatement.cxx
index 7d334018377f..7756f4fc6f83 100644
--- a/connectivity/source/drivers/macab/MacabStatement.cxx
+++ b/connectivity/source/drivers/macab/MacabStatement.cxx
@@ -460,7 +460,7 @@ OSL_TRACE("Mac OS Address book - SQL Request: %s", OUtoCStr(sql));
impl_throwError(STR_QUERY_TOO_COMPLEX);
}
- m_xResultSet.set(pResult);
+ m_xResultSet = Reference<XResultSet>(pResult);;
return xRS;
}