[Libreoffice-commits] .: accessibility/inc accessibility/source

Thomas Arnhold tarnhold at kemper.freedesktop.org
Tue Mar 1 05:55:45 PST 2011


 accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx |   16 ----------
 accessibility/source/extended/accessibleiconchoicectrlentry.cxx            |   15 ---------
 2 files changed, 31 deletions(-)

New commits:
commit abbb9d2731afd6c41b7b1015ecbbab92eccf071c
Author: Michael Lefevre <lefevre00 at yahoo.fr>
Date:   Mon Feb 28 23:21:09 2011 +0100

    Remove dead code
    
    ACCESSIBLE_EVENT_NOTIFICATION_ENABLED was never define. So the #ifdef #endif "brackets" could go away.

diff --git a/accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx b/accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx
index 3e9cec0..b2c145d 100644
--- a/accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx
+++ b/accessibility/inc/accessibility/extended/accessibleiconchoicectrlentry.hxx
@@ -83,22 +83,6 @@ namespace accessibility
         ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > m_xParent;
 
     private:
-    #ifdef ACCESSIBLE_EVENT_NOTIFICATION_ENABLED
-    // (the following method is unused currently. If you need it, simply remove the #ifdef thing here and
-    // in the cxx)
-        /** notifies all listeners that this object has changed
-            @param	_nEventId
-                is the event id
-            @param	_aOldValue
-                is the old value
-            @param	_aNewValue
-                is the new value
-        */
-        void	NotifyAccessibleEvent( sal_Int16 _nEventId,
-                                       const ::com::sun::star::uno::Any& _aOldValue,
-                                       const ::com::sun::star::uno::Any& _aNewValue );
-    #endif
-
         Rectangle				GetBoundingBox_Impl() const;
         Rectangle				GetBoundingBoxOnScreen_Impl() const;
         sal_Bool				IsAlive_Impl() const;
diff --git a/accessibility/source/extended/accessibleiconchoicectrlentry.cxx b/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
index 6a613de..791d89a 100644
--- a/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
+++ b/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
@@ -122,21 +122,6 @@ throw(RuntimeException)
             dispose();
         }
     }
-    #ifdef ACCESSIBLE_EVENT_NOTIFICATION_ENABLED
-    // (the following method is unused currently. If you need it, simply remove the #ifdef thing here and
-    // in the hxx)
-    // -----------------------------------------------------------------------------
-    void AccessibleIconChoiceCtrlEntry::NotifyAccessibleEvent( sal_Int16 _nEventId,
-                                                   const ::com::sun::star::uno::Any& _aOldValue,
-                                                   const ::com::sun::star::uno::Any& _aNewValue )
-    {
-        Reference< uno::XInterface > xSource( *this );
-        AccessibleEventObject aEventObj( xSource, _nEventId, _aNewValue, _aOldValue );
-
-        if (m_nClientId)
-            comphelper::AccessibleEventNotifier::addEvent( m_nClientId, aEventObj );
-    }
-    #endif
     // -----------------------------------------------------------------------------
     Rectangle AccessibleIconChoiceCtrlEntry::GetBoundingBox_Impl() const
     {


More information about the Libreoffice-commits mailing list