summaryrefslogtreecommitdiff
path: root/vbahelper/source/msforms/vbaradiobutton.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-30 15:52:49 +0200
committerNoel Grandin <noel@peralex.com>2014-05-02 08:49:23 +0200
commit17dcf76ef87c15b8b83465a7c29b96dc2d05cde9 (patch)
tree60540d3b9553594355b1ede38470959637a9cc1a /vbahelper/source/msforms/vbaradiobutton.cxx
parent7ae4102f171c5f0d452fa78c5c17722bc9649fc5 (diff)
vbahelper: sal_Bool->bool
Change-Id: Ibf21ce17a8e743701f1011e1620f26b93f952991
Diffstat (limited to 'vbahelper/source/msforms/vbaradiobutton.cxx')
-rw-r--r--vbahelper/source/msforms/vbaradiobutton.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vbahelper/source/msforms/vbaradiobutton.cxx b/vbahelper/source/msforms/vbaradiobutton.cxx
index a55c55e3dc6a..cfdfcf136ea9 100644
--- a/vbahelper/source/msforms/vbaradiobutton.cxx
+++ b/vbahelper/source/msforms/vbaradiobutton.cxx
@@ -65,7 +65,7 @@ ScVbaRadioButton::setValue( const uno::Any& _value ) throw (uno::RuntimeExceptio
if( !( _value >>= nValue ) )
{
- sal_Bool bValue = sal_False;
+ bool bValue = false;
_value >>= bValue;
if ( bValue )
nValue = -1;