summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/api/statement.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 14:04:52 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 14:04:52 +0000
commit255ae5e981c11dcdea65ad1b9b70f21e2c599387 (patch)
tree533411ab688dfab2d214d10a5cf9aea0df673f62 /dbaccess/source/core/api/statement.cxx
parentb12840636a2dc0aef5d2d7c38e28f68a2d6b2e05 (diff)
INTEGRATION: CWS insight01 (1.10.104); FILE MERGED
2004/02/12 16:15:22 oj 1.10.104.3: #111075# fix refcount problem 2004/01/02 13:55:47 oj 1.10.104.2: RESYNC: (1.10-1.11); FILE MERGED 2003/10/24 06:30:02 oj 1.10.104.1: #i21643# import filter changes
Diffstat (limited to 'dbaccess/source/core/api/statement.cxx')
-rw-r--r--dbaccess/source/core/api/statement.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/dbaccess/source/core/api/statement.cxx b/dbaccess/source/core/api/statement.cxx
index 641799b3644a..827b47a80900 100644
--- a/dbaccess/source/core/api/statement.cxx
+++ b/dbaccess/source/core/api/statement.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: statement.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2003-12-01 10:35:13 $
+ * last change: $Author: hr $ $Date: 2004-08-02 15:04:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -114,7 +114,7 @@ OStatementBase::OStatementBase(const Reference< XConnection > & _xConn,
{
DBG_CTOR(OStatementBase, NULL);
OSL_ENSURE(_xStatement.is() ,"Statement is NULL!");
- m_xAggregateAsSet = Reference< XPropertySet >(_xStatement, UNO_QUERY);
+ m_xAggregateAsSet.set(_xStatement,UNO_QUERY);
m_xAggregateAsCancellable = Reference< ::com::sun::star::util::XCancellable > (m_xAggregateAsSet, UNO_QUERY);
}
@@ -212,10 +212,10 @@ void OStatementBase::disposing()
{
Reference< XCloseable > (m_xAggregateAsSet, UNO_QUERY)->close();
}
- catch(DisposedException& e)
+ catch(DisposedException& )
{// don't care for anymore
}
- catch(RuntimeException& e)
+ catch(RuntimeException& )
{// don't care for anymore
}
}