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.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/accessibility/source/standard/vclxaccessibleradiobutton.cxx b/accessibility/source/standard/vclxaccessibleradiobutton.cxx
index 5ad9053e9ea5..13c9f251cfcd 100644
--- a/accessibility/source/standard/vclxaccessibleradiobutton.cxx
+++ b/accessibility/source/standard/vclxaccessibleradiobutton.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -175,7 +175,7 @@ sal_Int32 VCLXAccessibleRadioButton::getAccessibleActionCount( ) throw (RuntimeE
{
OExternalLockGuard aGuard( this );
- return 1;
+ return 1;
}
// -----------------------------------------------------------------------------
@@ -214,7 +214,7 @@ Reference< XAccessibleKeyBinding > VCLXAccessibleRadioButton::getAccessibleActio
if ( nIndex < 0 || nIndex >= getAccessibleActionCount() )
throw IndexOutOfBoundsException();
-
+
OAccessibleKeyBindingHelper* pKeyBindingHelper = new OAccessibleKeyBindingHelper();
Reference< XAccessibleKeyBinding > xKeyBinding = pKeyBindingHelper;
@@ -258,7 +258,7 @@ Any VCLXAccessibleRadioButton::getCurrentValue( ) throw (RuntimeException)
VCLXRadioButton* pVCLXRadioButton = static_cast< VCLXRadioButton* >( GetVCLXWindow() );
if ( pVCLXRadioButton )
aValue <<= (sal_Int32) pVCLXRadioButton->getState();
-
+
return aValue;
}
@@ -284,7 +284,7 @@ sal_Bool VCLXAccessibleRadioButton::setCurrentValue( const Any& aNumber ) throw
pVCLXRadioButton->setState( (sal_Bool) nValue );
bReturn = sal_True;
}
-
+
return bReturn;
}
@@ -296,7 +296,7 @@ Any VCLXAccessibleRadioButton::getMaximumValue( ) throw (RuntimeException)
Any aValue;
aValue <<= (sal_Int32) 1;
-
+
return aValue;
}
@@ -308,7 +308,7 @@ Any VCLXAccessibleRadioButton::getMinimumValue( ) throw (RuntimeException)
Any aValue;
aValue <<= (sal_Int32) 0;
-
+
return aValue;
}