diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-19 12:15:34 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-19 13:05:12 +0200 |
commit | 24a0063ae4c12251a27ec7e87e16b4ae092b263d (patch) | |
tree | ddd103ec29d7fc1260f2b6239727168464409734 /sc | |
parent | d492135b4db08a4be139ddb76a5f8317da005eb7 (diff) |
sal_Bool->bool
Change-Id: I8c5258b01a98c4ed66999a45a2a2e0efc3f9b123
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/vba/vbaformat.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/vba/vbaformat.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/vba/vbaformat.cxx b/sc/source/ui/vba/vbaformat.cxx index 270386d3b6ac..a026bfd4be3f 100644 --- a/sc/source/ui/vba/vbaformat.cxx +++ b/sc/source/ui/vba/vbaformat.cxx @@ -50,7 +50,7 @@ using namespace ::com::sun::star; #define LOCALE "Locale" template< typename Ifc1 > -ScVbaFormat< Ifc1 >::ScVbaFormat( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext > & xContext, const uno::Reference< beans::XPropertySet >& _xPropertySet, const uno::Reference< frame::XModel >& xModel, bool bCheckAmbiguoity ) throw ( script::BasicErrorException ) : ScVbaFormat_BASE( xParent, xContext ), m_aDefaultLocale( OUString("en"), OUString( "US"), OUString() ), mxPropertySet( _xPropertySet ), mxModel( xModel ), mbCheckAmbiguoity( bCheckAmbiguoity ), mbAddIndent( sal_False ) +ScVbaFormat< Ifc1 >::ScVbaFormat( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext > & xContext, const uno::Reference< beans::XPropertySet >& _xPropertySet, const uno::Reference< frame::XModel >& xModel, bool bCheckAmbiguoity ) throw ( script::BasicErrorException ) : ScVbaFormat_BASE( xParent, xContext ), m_aDefaultLocale( OUString("en"), OUString( "US"), OUString() ), mxPropertySet( _xPropertySet ), mxModel( xModel ), mbCheckAmbiguoity( bCheckAmbiguoity ), mbAddIndent( false ) { try { diff --git a/sc/source/ui/vba/vbaformat.hxx b/sc/source/ui/vba/vbaformat.hxx index b227381a2ba0..7e90f3d57f4b 100644 --- a/sc/source/ui/vba/vbaformat.hxx +++ b/sc/source/ui/vba/vbaformat.hxx @@ -45,8 +45,8 @@ protected: css::uno::Reference< css::util::XNumberFormatTypes > xNumberFormatTypes; css::uno::Reference< css::frame::XModel > mxModel; css::uno::Reference< css::beans::XPropertyState > xPropertyState; - sal_Bool mbCheckAmbiguoity; - sal_Bool mbAddIndent; + bool mbCheckAmbiguoity; + bool mbAddIndent; //NumberFormatter oNumberFormatter = null; css::uno::Reference< css::lang::XMultiServiceFactory > xMultiServiceFactory; bool isAmbiguous(const OUString& _sPropertyName) throw ( css::script::BasicErrorException ); |