User: hr      
Date: 06/06/19 19:41:35

Modified:
 /dba/dbaccess/source/core/api/
  statement.cxx

Log:
 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)

File Changes:

Directory: /dba/dbaccess/source/core/api/
=========================================

File [changed]: statement.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/statement.cxx?r1=1.13&r2=1.14
Delta lines:  +3 -3
-------------------
--- statement.cxx       8 Sep 2005 10:11:08 -0000       1.13
+++ statement.cxx       20 Jun 2006 02:41:32 -0000      1.14
@@ -76,7 +76,7 @@
 using namespace dbaccess;
 using namespace dbtools;
 
-DBG_NAME(OStatementBase);
+DBG_NAME(OStatementBase)
 
 //--------------------------------------------------------------------------
 OStatementBase::OStatementBase(const Reference< XConnection > & _xConn,
@@ -176,7 +176,7 @@
 
        // free the original statement
        {
-               MutexGuard aGuard(m_aCancelMutex);
+               MutexGuard aCancelGuard(m_aCancelMutex);
                m_xAggregateAsCancellable = NULL;
        }
 
@@ -332,7 +332,7 @@
 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




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to