User: hr      
Date: 06/06/19 20:22:59

Modified:
 /dba/dbaccess/source/ui/misc/
  componentclientmonitor.cxx

Log:
 INTEGRATION: CWS warnings01 (1.3.50); FILE MERGED
 2006/03/24 15:36:23 fs 1.3.50.1: #i57457# warning-free code (unxlngi6/.pro + 
unxsoli4.pro)

File Changes:

Directory: /dba/dbaccess/source/ui/misc/
========================================

File [changed]: componentclientmonitor.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/misc/componentclientmonitor.cxx?r1=1.3&r2=1.4
Delta lines:  +10 -11
---------------------
--- componentclientmonitor.cxx  8 Sep 2005 16:12:09 -0000       1.3
+++ componentclientmonitor.cxx  20 Jun 2006 03:22:56 -0000      1.4
@@ -39,6 +39,9 @@
 #ifndef _TOOLS_DEBUG_HXX
 #include <tools/debug.hxx>
 #endif
+#ifndef TOOLS_DIAGNOSE_EX_H
+#include <tools/diagnose_ex.h>
+#endif
 
 //.........................................................................
 namespace dbaui
@@ -58,8 +61,8 @@
        //--- 31.08.01 16:53:46 -----------------------------------------------
 
        OComponentClientMonitor::OComponentClientMonitor( const Reference< 
XComponent >& _rxComponent ) SAL_THROW(())
-               :m_nAnonymousClients( 0 )
-               ,m_xComponent( _rxComponent )
+               :m_xComponent( _rxComponent )
+               ,m_nAnonymousClients( 0 )
        {
                DBG_CTOR( OComponentClientMonitor, NULL );
 
@@ -69,10 +72,9 @@
                        if ( m_xComponent.is() )
                                m_xComponent->addEventListener( this );
                }
-               catch( const Exception& e )
+               catch( const Exception& )
                {
-                       e; // make compiler happy
-                       DBG_ERROR( 
"OComponentClientMonitor::OComponentClientMonitor: caught an exception!" );
+            DBG_UNHANDLED_EXCEPTION();
                }
        }
 
@@ -124,8 +126,7 @@
                }
                catch( const Exception& e )
                {
-                       e; // make compiler happy
-                       DBG_ERROR( "OComponentClientMonitor::registerClient: 
caught an exception!" );
+            DBG_UNHANDLED_EXCEPTION();
                }
        }
 
@@ -161,8 +162,7 @@
                }
                catch( const Exception& e )
                {
-                       e; // make compiler happy
-                       DBG_ERROR( "OComponentClientMonitor::disposing: caught 
an exception!" );
+            DBG_UNHANDLED_EXCEPTION();
                }
        }
 
@@ -183,8 +183,7 @@
                        }
                        catch( const Exception& e )
                        {
-                               e; // make compiler happy
-                               DBG_ERROR( 
"OComponentClientMonitor::clientGone: caught an exception!" );
+                DBG_UNHANDLED_EXCEPTION();
                        }
                }
        }




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

Reply via email to