summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/api/statement.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 01:41:32 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 01:41:32 +0000
commit9332266194f3f27a15a5da3a0ae0216f8a11331b (patch)
treeb0bd60f1ae665efcbc9607f90e59ddfdea13f756 /dbaccess/source/core/api/statement.cxx
parenteae91285d0ce4fdf8011324ee05390f1d8700494 (diff)
INTEGRATION: CWS warnings01 (1.13.50); FILE MERGED
2006/03/24 15:35:50 fs 1.13.50.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro)
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 c57f903db0f2..12061eaafb36 100644
--- a/dbaccess/source/core/api/statement.cxx
+++ b/dbaccess/source/core/api/statement.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: statement.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 10:11:08 $
+ * last change: $Author: hr $ $Date: 2006-06-20 02:41:32 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -76,7 +76,7 @@ using namespace ::osl;
using namespace dbaccess;
using namespace dbtools;
-DBG_NAME(OStatementBase);
+DBG_NAME(OStatementBase)
//--------------------------------------------------------------------------
OStatementBase::OStatementBase(const Reference< XConnection > & _xConn,
@@ -176,7 +176,7 @@ void OStatementBase::disposing()
// free the original statement
{
- MutexGuard aGuard(m_aCancelMutex);
+ MutexGuard aCancelGuard(m_aCancelMutex);
m_xAggregateAsCancellable = NULL;
}
@@ -332,7 +332,7 @@ void OStatementBase::clearWarnings(void) throw( SQLException, RuntimeException )
void OStatementBase::cancel(void) throw( RuntimeException )
{
// no blocking as cancel is typically called from a different thread
- ClearableMutexGuard aGuard(m_aCancelMutex);
+ ClearableMutexGuard aCancelGuard(m_aCancelMutex);
if (m_xAggregateAsCancellable.is())
m_xAggregateAsCancellable->cancel();
// else do nothing