summaryrefslogtreecommitdiff
path: root/framework/source/threadhelp
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 10:30:30 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 10:30:30 +0000
commit1a756b6c83f951d83559098c5ee59efb1b856180 (patch)
tree47da6e041fe4b4207b66fdffa398e8b1a4e917c7 /framework/source/threadhelp
parentb933315f75af78479f4a21a3dd5705b9265dd252 (diff)
INTEGRATION: CWS warnings01 (1.7.32); FILE MERGED
2005/11/16 13:10:41 pl 1.7.32.2: #i55991# removed warnings 2005/10/28 14:48:41 cd 1.7.32.1: #i55991# Warning free code changes for gcc
Diffstat (limited to 'framework/source/threadhelp')
-rw-r--r--framework/source/threadhelp/transactionmanager.cxx26
1 files changed, 23 insertions, 3 deletions
diff --git a/framework/source/threadhelp/transactionmanager.cxx b/framework/source/threadhelp/transactionmanager.cxx
index e4386b8bf0..fc9957f464 100644
--- a/framework/source/threadhelp/transactionmanager.cxx
+++ b/framework/source/threadhelp/transactionmanager.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: transactionmanager.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 01:49:10 $
+ * last change: $Author: hr $ $Date: 2006-06-19 11:30:30 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -97,6 +97,21 @@ TransactionManager::TransactionManager()
m_aBarrier.open();
}
+/*-************************************************************************************************************//**
+ @short standard dtor
+ @descr -
+
+ @seealso -
+
+ @param -
+ @return -
+
+ @onerror -
+*//*-*************************************************************************************************************/
+TransactionManager::~TransactionManager()
+{
+}
+
/*-****************************************************************************************************//**
@interface ITransactionManager
@short set new working mode
@@ -177,7 +192,7 @@ void TransactionManager::setWorkingMode( EWorkingMode eMode )
// Make member access threadsafe!
ResetableGuard aGuard( m_aMutex );
- // Check working mode again .. because anoz´ther instance could be faster.
+ // Check working mode again .. because anoz�ther instance could be faster.
// (It's possible to set this guard at first of this method too!)
if( m_aTransactionManager.getWorkingMode() == E_INIT )
{
@@ -393,7 +408,12 @@ void TransactionManager::impl_throwExceptions( EExceptionMode eMode, ERejectReas
LOG_ERROR( "TransactionManager...", "Owner instance already closed. Call was rejected!" )
throw css::lang::DisposedException( DECLARE_ASCII("TransactionManager...\nOwner instance already closed. Call was rejected!\n" ), css::uno::Reference< css::uno::XInterface >() );
}
+ case E_NOREASON : {
+ // Help programmer to find out
+ LOG_ERROR( "TransactionManager...", "Impossible case E_NOREASON!" )
+ }
break;
+ default: break; // nothing to do
}
}
}