User: hr      
Date: 06/06/19 18:29:39

Modified:
 /dba/connectivity/source/drivers/hsqldb/
  HConnection.cxx

Log:
 INTEGRATION: CWS warnings01 (1.4.8); FILE MERGED
 2005/11/21 10:07:44 fs 1.4.8.1: #i57457# warning-free code on unx*

File Changes:

Directory: /dba/connectivity/source/drivers/hsqldb/
===================================================

File [changed]: HConnection.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/hsqldb/HConnection.cxx?r1=1.4&r2=1.5
Delta lines:  +4 -4
-------------------
--- HConnection.cxx     24 Oct 2005 08:21:12 -0000      1.4
+++ HConnection.cxx     20 Jun 2006 01:29:36 -0000      1.5
@@ -63,14 +63,14 @@
             FlushListeners( ::osl::Mutex& _rMutex ) :FlushListeners_Base( 
_rMutex ) { }
 
         protected:
-            virtual bool    implNotify(
+            virtual bool    implTypedNotify(
                                 const Reference< XFlushListener >& _rxListener,
                                 const EventObject& _rEvent
                             )   SAL_THROW( ( Exception ) );
         };
 
         // 
-----------------------------------------------------------------------------
-        bool FlushListeners::implNotify( const Reference< XFlushListener >& 
_rxListener, const EventObject& _rEvent ) SAL_THROW( ( Exception ) )
+        bool FlushListeners::implTypedNotify( const Reference< XFlushListener 
>& _rxListener, const EventObject& _rEvent ) SAL_THROW( ( Exception ) )
         {
             _rxListener->flushed( _rEvent );
             return true;    // continue notifying the other listeners, if any
@@ -144,13 +144,13 @@
 //--------------------------------------------------------------------
 void SAL_CALL OConnectionWeakWrapper::addFlushListener( const Reference< 
XFlushListener >& l ) throw (RuntimeException)
 {
-    m_pFlushListeners->addListener( l );
+    m_pFlushListeners->addTypedListener( l );
 }
 
 //--------------------------------------------------------------------
 void SAL_CALL OConnectionWeakWrapper::removeFlushListener( const Reference< 
XFlushListener >& l ) throw (RuntimeException)
 {
-    m_pFlushListeners->removeListener( l );
+    m_pFlushListeners->removeTypedListener( l );
 }
 
 // 
-----------------------------------------------------------------------------




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

Reply via email to