summaryrefslogtreecommitdiff
path: root/accessibility/source/standard/accessiblemenuitemcomponent.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'accessibility/source/standard/accessiblemenuitemcomponent.cxx')
-rw-r--r--accessibility/source/standard/accessiblemenuitemcomponent.cxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/accessibility/source/standard/accessiblemenuitemcomponent.cxx b/accessibility/source/standard/accessiblemenuitemcomponent.cxx
index f2e1c78712b9..37f8da2b36aa 100644
--- a/accessibility/source/standard/accessiblemenuitemcomponent.cxx
+++ b/accessibility/source/standard/accessiblemenuitemcomponent.cxx
@@ -51,7 +51,6 @@ using namespace ::com::sun::star;
using namespace ::comphelper;
-
// class OAccessibleMenuItemComponent
@@ -65,13 +64,11 @@ OAccessibleMenuItemComponent::OAccessibleMenuItemComponent( Menu* pParent, sal_u
}
-
OAccessibleMenuItemComponent::~OAccessibleMenuItemComponent()
{
}
-
bool OAccessibleMenuItemComponent::IsEnabled()
{
OExternalLockGuard aGuard( this );
@@ -84,7 +81,6 @@ bool OAccessibleMenuItemComponent::IsEnabled()
}
-
bool OAccessibleMenuItemComponent::IsVisible()
{
bool bVisible = false;
@@ -96,7 +92,6 @@ bool OAccessibleMenuItemComponent::IsVisible()
}
-
void OAccessibleMenuItemComponent::Select()
{
// open the parent menu
@@ -114,7 +109,6 @@ void OAccessibleMenuItemComponent::Select()
}
-
void OAccessibleMenuItemComponent::DeSelect()
{
if ( m_pParent && IsSelected() )
@@ -122,7 +116,6 @@ void OAccessibleMenuItemComponent::DeSelect()
}
-
void OAccessibleMenuItemComponent::Click()
{
// open the parent menu
@@ -170,14 +163,12 @@ void OAccessibleMenuItemComponent::Click()
}
-
void OAccessibleMenuItemComponent::SetItemPos( sal_uInt16 nItemPos )
{
m_nItemPos = nItemPos;
}
-
void OAccessibleMenuItemComponent::SetAccessibleName( const OUString& sAccessibleName )
{
if ( !m_sAccessibleName.equals( sAccessibleName ) )
@@ -191,7 +182,6 @@ void OAccessibleMenuItemComponent::SetAccessibleName( const OUString& sAccessibl
}
-
OUString OAccessibleMenuItemComponent::GetAccessibleName()
{
OUString sName;
@@ -212,7 +202,6 @@ OUString OAccessibleMenuItemComponent::GetAccessibleName()
}
-
void OAccessibleMenuItemComponent::SetItemText( const OUString& sItemText )
{
Any aOldValue, aNewValue;
@@ -224,7 +213,6 @@ void OAccessibleMenuItemComponent::SetItemText( const OUString& sItemText )
}
-
OUString OAccessibleMenuItemComponent::GetItemText()
{
OUString sText;
@@ -235,7 +223,6 @@ OUString OAccessibleMenuItemComponent::GetItemText()
}
-
void OAccessibleMenuItemComponent::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet )
{
bool bEnabled = IsEnabled();
@@ -319,7 +306,6 @@ sal_Int32 OAccessibleMenuItemComponent::getAccessibleChildCount() throw (Runtime
}
-
Reference< XAccessible > OAccessibleMenuItemComponent::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -331,7 +317,6 @@ Reference< XAccessible > OAccessibleMenuItemComponent::getAccessibleChild( sal_I
}
-
Reference< XAccessible > OAccessibleMenuItemComponent::getAccessibleParent( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -340,7 +325,6 @@ Reference< XAccessible > OAccessibleMenuItemComponent::getAccessibleParent( ) t
}
-
sal_Int32 OAccessibleMenuItemComponent::getAccessibleIndexInParent( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -349,7 +333,6 @@ sal_Int32 OAccessibleMenuItemComponent::getAccessibleIndexInParent( ) throw (Ru
}
-
sal_Int16 OAccessibleMenuItemComponent::getAccessibleRole( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -358,7 +341,6 @@ sal_Int16 OAccessibleMenuItemComponent::getAccessibleRole( ) throw (RuntimeExce
}
-
OUString OAccessibleMenuItemComponent::getAccessibleDescription( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -371,7 +353,6 @@ OUString OAccessibleMenuItemComponent::getAccessibleDescription( ) throw (Runtim
}
-
OUString OAccessibleMenuItemComponent::getAccessibleName( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -380,7 +361,6 @@ OUString OAccessibleMenuItemComponent::getAccessibleName( ) throw (RuntimeExcep
}
-
Reference< XAccessibleRelationSet > OAccessibleMenuItemComponent::getAccessibleRelationSet( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -391,7 +371,6 @@ Reference< XAccessibleRelationSet > OAccessibleMenuItemComponent::getAccessibleR
}
-
Locale OAccessibleMenuItemComponent::getLocale( ) throw (IllegalAccessibleComponentStateException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -411,14 +390,12 @@ Reference< XAccessible > OAccessibleMenuItemComponent::getAccessibleAtPoint( con
}
-
void OAccessibleMenuItemComponent::grabFocus( ) throw (RuntimeException, std::exception)
{
// no focus for items
}
-
sal_Int32 OAccessibleMenuItemComponent::getForeground( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -436,7 +413,6 @@ sal_Int32 OAccessibleMenuItemComponent::getForeground( ) throw (RuntimeExceptio
}
-
sal_Int32 OAccessibleMenuItemComponent::getBackground( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -474,7 +450,6 @@ Reference< awt::XFont > OAccessibleMenuItemComponent::getFont( ) throw (Runtime
}
-
OUString OAccessibleMenuItemComponent::getTitledBorderText( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -483,7 +458,6 @@ OUString OAccessibleMenuItemComponent::getTitledBorderText( ) throw (RuntimeExc
}
-
OUString OAccessibleMenuItemComponent::getToolTipText( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -496,7 +470,6 @@ OUString OAccessibleMenuItemComponent::getToolTipText( ) throw (RuntimeExceptio
}
-
bool OAccessibleMenuItemComponent::IsMenuHideDisabledEntries()
{
if (m_pParent )