Remove dead code

Change-Id: Id522113f1ba0c9e7b1356acc01a79e0e90a5e752
This commit is contained in:
Stephan Bergmann
2014-03-24 16:15:03 +01:00
parent af4b38d6e7
commit c6b2b5f34c
20 changed files with 4 additions and 113 deletions

View File

@@ -93,10 +93,6 @@ protected:
virtual void SAL_CALL grabFocus()
throw ( ::com::sun::star::uno::RuntimeException, std::exception );
/** @return The key bindings associated with this object. */
virtual ::com::sun::star::uno::Any SAL_CALL getAccessibleKeyBinding()
throw ( ::com::sun::star::uno::RuntimeException );
// XServiceInfo -----------------------------------------------------------
/** @return

View File

@@ -216,14 +216,8 @@ public:
/* Derived classes have to implement:
- getAccessibleAt,
- grabFocus,
- getAccessibleKeyBinding. */
- grabFocus. */
/** @return
No key bindings supported by default.
*/
virtual ::com::sun::star::uno::Any SAL_CALL getAccessibleKeyBinding()
throw ( ::com::sun::star::uno::RuntimeException );
/** @return
The accessible child rendered under the given point.
*/

View File

@@ -83,10 +83,6 @@ public:
virtual void SAL_CALL grabFocus()
throw ( ::com::sun::star::uno::RuntimeException, std::exception );
/** @return The key bindings associated with this object. */
virtual ::com::sun::star::uno::Any SAL_CALL getAccessibleKeyBinding()
throw ( ::com::sun::star::uno::RuntimeException );
// XAccessibleTable -------------------------------------------------------
/** @return The description text of the specified row. */

View File

@@ -70,10 +70,6 @@ public:
virtual void SAL_CALL grabFocus()
throw ( ::com::sun::star::uno::RuntimeException, std::exception );
/** @return The key bindings associated with this object. */
virtual ::com::sun::star::uno::Any SAL_CALL getAccessibleKeyBinding()
throw ( ::com::sun::star::uno::RuntimeException );
// XAccessibleTable -------------------------------------------------------
/** @return The description text of the specified row. */

View File

@@ -79,8 +79,7 @@ public:
/* Derived classes have to implement:
- getAccessibleAt,
- grabFocus,
- getAccessibleKeyBinding. */
- grabFocus. */
// XAccessibleTable -------------------------------------------------------

View File

@@ -84,10 +84,6 @@ protected:
virtual void SAL_CALL grabFocus()
throw ( ::com::sun::star::uno::RuntimeException, std::exception );
/** @return The key bindings associated with this object. */
virtual ::com::sun::star::uno::Any SAL_CALL getAccessibleKeyBinding()
throw ( ::com::sun::star::uno::RuntimeException );
// XServiceInfo -----------------------------------------------------------
/** @return

View File

@@ -189,14 +189,8 @@ public:
/* Derived classes have to implement:
- getAccessibleAt,
- grabFocus,
- getAccessibleKeyBinding. */
- grabFocus. */
/** @return
No key bindings supported by default.
*/
virtual ::com::sun::star::uno::Any SAL_CALL getAccessibleKeyBinding()
throw ( ::com::sun::star::uno::RuntimeException );
/** @return
The accessible child rendered under the given point.
*/

View File

@@ -77,10 +77,6 @@ public:
virtual void SAL_CALL grabFocus()
throw ( ::com::sun::star::uno::RuntimeException, std::exception );
/** @return The key bindings associated with this object. */
virtual ::com::sun::star::uno::Any SAL_CALL getAccessibleKeyBinding()
throw ( ::com::sun::star::uno::RuntimeException );
// XAccessibleTable -------------------------------------------------------
/** @return The description text of the specified row. */

View File

@@ -77,10 +77,6 @@ public:
virtual void SAL_CALL grabFocus()
throw ( ::com::sun::star::uno::RuntimeException, std::exception );
/** @return The key bindings associated with this object. */
virtual ::com::sun::star::uno::Any SAL_CALL getAccessibleKeyBinding()
throw ( ::com::sun::star::uno::RuntimeException );
// XAccessibleTable -------------------------------------------------------
/** @return The description text of the specified row. */

View File

@@ -75,8 +75,7 @@ public:
/* Derived classes have to implement:
- getAccessibleAt,
- grabFocus,
- getAccessibleKeyBinding. */
- grabFocus. */
// XAccessibleTable -------------------------------------------------------

View File

@@ -227,9 +227,6 @@ private:
virtual void SAL_CALL grabFocus() throw (css::uno::RuntimeException, std::exception);
virtual css::uno::Any SAL_CALL getAccessibleKeyBinding()
throw (css::uno::RuntimeException);
virtual css::util::Color SAL_CALL getForeground()
throw (css::uno::RuntimeException, std::exception);

View File

@@ -195,15 +195,6 @@ void SAL_CALL AccessibleBrowseBox::grabFocus()
mpBrowseBox->GrabFocus();
}
Any SAL_CALL AccessibleBrowseBox::getAccessibleKeyBinding()
throw ( uno::RuntimeException )
{
ensureIsAlive();
return Any();
}
// XServiceInfo ---------------------------------------------------------------
OUString SAL_CALL AccessibleBrowseBox::getImplementationName()

View File

@@ -509,12 +509,6 @@ sal_Int16 SAL_CALL AccessibleBrowseBoxBase::getAccessibleRole()
return nRole;
}
Any SAL_CALL AccessibleBrowseBoxBase::getAccessibleKeyBinding()
throw ( uno::RuntimeException )
{
return Any();
}
Reference<XAccessible > SAL_CALL AccessibleBrowseBoxBase::getAccessibleAtPoint( const ::com::sun::star::awt::Point& )
throw ( uno::RuntimeException, std::exception )
{

View File

@@ -98,13 +98,6 @@ void SAL_CALL AccessibleBrowseBoxHeaderBar::grabFocus()
// focus on header not supported
}
Any SAL_CALL AccessibleBrowseBoxHeaderBar::getAccessibleKeyBinding()
throw ( uno::RuntimeException )
{
ensureIsAlive();
return Any(); // no special key bindings for header
}
// XAccessibleTable -----------------------------------------------------------
OUString SAL_CALL AccessibleBrowseBoxHeaderBar::getAccessibleRowDescription( sal_Int32 nRow )

View File

@@ -98,13 +98,6 @@ void SAL_CALL AccessibleBrowseBoxTable::grabFocus()
mpBrowseBox->GrabTableFocus();
}
Any SAL_CALL AccessibleBrowseBoxTable::getAccessibleKeyBinding()
throw ( uno::RuntimeException )
{
ensureIsAlive();
return Any(); // no special key bindings for data table
}
// XAccessibleTable -----------------------------------------------------------
OUString SAL_CALL AccessibleBrowseBoxTable::getAccessibleRowDescription( sal_Int32 nRow )

View File

@@ -223,17 +223,6 @@ void SAL_CALL AccessibleGridControl::grabFocus()
m_aTable.GrabFocus();
}
Any SAL_CALL AccessibleGridControl::getAccessibleKeyBinding()
throw ( uno::RuntimeException )
{
SolarMutexGuard g;
ensureIsAlive();
return Any();
}
// XServiceInfo ---------------------------------------------------------------
OUString SAL_CALL AccessibleGridControl::getImplementationName()

View File

@@ -430,12 +430,6 @@ sal_Int16 SAL_CALL AccessibleGridControlBase::getAccessibleRole()
return nRole;
}
Any SAL_CALL AccessibleGridControlBase::getAccessibleKeyBinding()
throw ( uno::RuntimeException )
{
return Any();
}
Reference<XAccessible > SAL_CALL AccessibleGridControlBase::getAccessibleAtPoint( const ::com::sun::star::awt::Point& )
throw ( uno::RuntimeException, std::exception )
{

View File

@@ -118,13 +118,6 @@ void SAL_CALL AccessibleGridControlHeader::grabFocus()
// focus on header not supported
}
Any SAL_CALL AccessibleGridControlHeader::getAccessibleKeyBinding()
throw ( uno::RuntimeException )
{
ensureIsAlive();
return Any(); // no special key bindings for header
}
// XAccessibleTable -----------------------------------------------------------
OUString SAL_CALL AccessibleGridControlHeader::getAccessibleRowDescription( sal_Int32 nRow )

View File

@@ -115,13 +115,6 @@ void SAL_CALL AccessibleGridControlTable::grabFocus()
m_aTable.GrabFocus();
}
Any SAL_CALL AccessibleGridControlTable::getAccessibleKeyBinding()
throw ( uno::RuntimeException )
{
ensureIsAlive();
return Any(); // no special key bindings for data table
}
// XAccessibleTable -----------------------------------------------------------
OUString SAL_CALL AccessibleGridControlTable::getAccessibleRowDescription( sal_Int32 nRow )

View File

@@ -289,14 +289,6 @@ void SAL_CALL Paragraph::grabFocus() throw (css::uno::RuntimeException, std::exc
}
}
// virtual
css::uno::Any SAL_CALL Paragraph::getAccessibleKeyBinding()
throw (css::uno::RuntimeException)
{
checkDisposed();
return css::uno::Any();
}
// virtual
css::util::Color SAL_CALL Paragraph::getForeground()
throw (css::uno::RuntimeException, std::exception)