diff options
Diffstat (limited to 'accessibility/source/standard/vclxaccessibleradiobutton.cxx')
-rw-r--r-- | accessibility/source/standard/vclxaccessibleradiobutton.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/accessibility/source/standard/vclxaccessibleradiobutton.cxx b/accessibility/source/standard/vclxaccessibleradiobutton.cxx index 0be409f1aed9..63666e799162 100644 --- a/accessibility/source/standard/vclxaccessibleradiobutton.cxx +++ b/accessibility/source/standard/vclxaccessibleradiobutton.cxx @@ -231,7 +231,7 @@ Any VCLXAccessibleRadioButton::getCurrentValue( ) VCLXRadioButton* pVCLXRadioButton = static_cast< VCLXRadioButton* >( GetVCLXWindow() ); if ( pVCLXRadioButton ) - aValue <<= (sal_Int32) pVCLXRadioButton->getState(); + aValue <<= static_cast<sal_Int32>(pVCLXRadioButton->getState()); return aValue; } @@ -267,7 +267,7 @@ Any VCLXAccessibleRadioButton::getMaximumValue( ) OExternalLockGuard aGuard( this ); Any aValue; - aValue <<= (sal_Int32) 1; + aValue <<= sal_Int32(1); return aValue; } @@ -278,7 +278,7 @@ Any VCLXAccessibleRadioButton::getMinimumValue( ) OExternalLockGuard aGuard( this ); Any aValue; - aValue <<= (sal_Int32) 0; + aValue <<= sal_Int32(0); return aValue; } |