summaryrefslogtreecommitdiff
path: root/accessibility/source/standard/vclxaccessibleradiobutton.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'accessibility/source/standard/vclxaccessibleradiobutton.cxx')
-rw-r--r--accessibility/source/standard/vclxaccessibleradiobutton.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/accessibility/source/standard/vclxaccessibleradiobutton.cxx b/accessibility/source/standard/vclxaccessibleradiobutton.cxx
index de870fc4a062..d9ad6f09e52e 100644
--- a/accessibility/source/standard/vclxaccessibleradiobutton.cxx
+++ b/accessibility/source/standard/vclxaccessibleradiobutton.cxx
@@ -44,7 +44,6 @@ using namespace ::com::sun::star::accessibility;
using namespace ::comphelper;
-
// VCLXAccessibleRadioButton
@@ -54,13 +53,11 @@ VCLXAccessibleRadioButton::VCLXAccessibleRadioButton( VCLXWindow* pVCLWindow )
}
-
VCLXAccessibleRadioButton::~VCLXAccessibleRadioButton()
{
}
-
void VCLXAccessibleRadioButton::ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent )
{
switch ( rVclWindowEvent.GetId() )
@@ -85,7 +82,6 @@ void VCLXAccessibleRadioButton::ProcessWindowEvent( const VclWindowEvent& rVclWi
}
-
void VCLXAccessibleRadioButton::FillAccessibleRelationSet( utl::AccessibleRelationSetHelper& rRelationSet )
{
VCLXAccessibleTextComponent::FillAccessibleRelationSet( rRelationSet );
@@ -109,7 +105,6 @@ void VCLXAccessibleRadioButton::FillAccessibleRelationSet( utl::AccessibleRelati
}
-
void VCLXAccessibleRadioButton::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet )
{
VCLXAccessibleTextComponent::FillAccessibleStateSet( rStateSet );
@@ -145,7 +140,6 @@ OUString VCLXAccessibleRadioButton::getImplementationName() throw (RuntimeExcept
}
-
Sequence< OUString > VCLXAccessibleRadioButton::getSupportedServiceNames() throw (RuntimeException, std::exception)
{
Sequence< OUString > aNames { "com.sun.star.awt.AccessibleRadioButton" };
@@ -164,7 +158,6 @@ sal_Int32 VCLXAccessibleRadioButton::getAccessibleActionCount( ) throw (RuntimeE
}
-
sal_Bool VCLXAccessibleRadioButton::doAccessibleAction ( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -180,7 +173,6 @@ sal_Bool VCLXAccessibleRadioButton::doAccessibleAction ( sal_Int32 nIndex ) thro
}
-
OUString VCLXAccessibleRadioButton::getAccessibleActionDescription ( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -192,7 +184,6 @@ OUString VCLXAccessibleRadioButton::getAccessibleActionDescription ( sal_Int32 n
}
-
Reference< XAccessibleKeyBinding > VCLXAccessibleRadioButton::getAccessibleActionKeyBinding( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -248,7 +239,6 @@ Any VCLXAccessibleRadioButton::getCurrentValue( ) throw (RuntimeException, std:
}
-
sal_Bool VCLXAccessibleRadioButton::setCurrentValue( const Any& aNumber ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -274,7 +264,6 @@ sal_Bool VCLXAccessibleRadioButton::setCurrentValue( const Any& aNumber ) throw
}
-
Any VCLXAccessibleRadioButton::getMaximumValue( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -286,7 +275,6 @@ Any VCLXAccessibleRadioButton::getMaximumValue( ) throw (RuntimeException, std:
}
-
Any VCLXAccessibleRadioButton::getMinimumValue( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -298,5 +286,4 @@ Any VCLXAccessibleRadioButton::getMinimumValue( ) throw (RuntimeException, std:
}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */