From 75ebd3bdf3ffcfd088f6dead6657b5a4244f2317 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 26 Mar 2014 12:03:10 +0200 Subject: basic: sal_Bool->bool Change-Id: Icd78d21495f305c8f00280eee76e7262e542317d --- basic/source/basmgr/vbahelper.cxx | 12 ++-- basic/source/classes/sbxmod.cxx | 4 +- basic/source/sbx/sbxform.cxx | 126 +++++++++++++++++++------------------- include/basic/sbxform.hxx | 26 ++++---- include/basic/vbahelper.hxx | 4 +- 5 files changed, 86 insertions(+), 86 deletions(-) diff --git a/basic/source/basmgr/vbahelper.cxx b/basic/source/basmgr/vbahelper.cxx index feb30a35117f..dbd82c8aa44c 100644 --- a/basic/source/basmgr/vbahelper.cxx +++ b/basic/source/basmgr/vbahelper.cxx @@ -102,7 +102,7 @@ uno::Any SAL_CALL DocumentsEnumeration::nextElement() throw (container::NoSuchEl /** Locks or unlocks the controllers of the specified document model. */ -void lclLockControllers( const uno::Reference< frame::XModel >& rxModel, sal_Bool bLockControllers ) +void lclLockControllers( const uno::Reference< frame::XModel >& rxModel, bool bLockControllers ) { if( rxModel.is() ) try { @@ -121,7 +121,7 @@ void lclLockControllers( const uno::Reference< frame::XModel >& rxModel, sal_Boo /** Enables or disables the container windows of all controllers of the specified document model. */ -void lclEnableContainerWindows( const uno::Reference< frame::XModel >& rxModel, sal_Bool bEnableWindows ) +void lclEnableContainerWindows( const uno::Reference< frame::XModel >& rxModel, bool bEnableWindows ) { try { @@ -149,12 +149,12 @@ void lclEnableContainerWindows( const uno::Reference< frame::XModel >& rxModel, -typedef void (*ModifyDocumentFunc)( const uno::Reference< frame::XModel >&, sal_Bool ); +typedef void (*ModifyDocumentFunc)( const uno::Reference< frame::XModel >&, bool ); /** Implementation iterating over all documents that have the same type as the specified model, and calling the passed functor. */ -void lclIterateDocuments( ModifyDocumentFunc pModifyDocumentFunc, const uno::Reference< frame::XModel >& rxModel, sal_Bool bModificator ) +void lclIterateDocuments( ModifyDocumentFunc pModifyDocumentFunc, const uno::Reference< frame::XModel >& rxModel, bool bModificator ) { uno::Reference< container::XEnumeration > xDocumentsEnum( new DocumentsEnumeration( rxModel ) ); // iterate over all open documents @@ -182,14 +182,14 @@ struct StaticCurrDirPool : public ::rtl::Static< CurrDirPool, StaticCurrDirPool -void lockControllersOfAllDocuments( const uno::Reference< frame::XModel >& rxModel, sal_Bool bLockControllers ) +void lockControllersOfAllDocuments( const uno::Reference< frame::XModel >& rxModel, bool bLockControllers ) { lclIterateDocuments( &lclLockControllers, rxModel, bLockControllers ); } -void enableContainerWindowsOfAllDocuments( const uno::Reference< frame::XModel >& rxModel, sal_Bool bEnableWindows ) +void enableContainerWindowsOfAllDocuments( const uno::Reference< frame::XModel >& rxModel, bool bEnableWindows ) { lclIterateDocuments( &lclEnableContainerWindows, rxModel, bEnableWindows ); } diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx index 3c320074c42c..b7732319de9d 100644 --- a/basic/source/classes/sbxmod.cxx +++ b/basic/source/classes/sbxmod.cxx @@ -1259,8 +1259,8 @@ sal_uInt16 SbModule::Run( SbMethod* pMeth ) { } // VBA always ensures screenupdating is enabled after completing - ::basic::vba::lockControllersOfAllDocuments( xModel, sal_False ); - ::basic::vba::enableContainerWindowsOfAllDocuments( xModel, sal_True ); + ::basic::vba::lockControllersOfAllDocuments( xModel, false ); + ::basic::vba::enableContainerWindowsOfAllDocuments( xModel, true ); } #ifdef DBG_TRACE_BASIC diff --git a/basic/source/sbx/sbxform.cxx b/basic/source/sbx/sbxform.cxx index 5b059e325633..d38410566e7b 100644 --- a/basic/source/sbx/sbxform.cxx +++ b/basic/source/sbx/sbxform.cxx @@ -166,13 +166,13 @@ void SbxBasicFormater::LeftShiftDecimalPoint( OUStringBuffer& sStrg ) } // returns a flag if rounding a 9 -void SbxBasicFormater::StrRoundDigit( OUStringBuffer& sStrg, short nPos, sal_Bool& bOverflow ) +void SbxBasicFormater::StrRoundDigit( OUStringBuffer& sStrg, short nPos, bool& bOverflow ) { if( nPos<0 ) { return; } - bOverflow = sal_False; + bOverflow = false; sal_Unicode c = sStrg[nPos]; if( nPos > 0 && (c == cDecPoint || c == cThousandSep) ) { @@ -194,7 +194,7 @@ void SbxBasicFormater::StrRoundDigit( OUStringBuffer& sStrg, short nPos, sal_Boo { ShiftString( sStrg, 0 ); sStrg[0] = (sal_Unicode)'1'; - bOverflow = sal_True; + bOverflow = true; } else { @@ -215,14 +215,14 @@ void SbxBasicFormater::StrRoundDigit( OUStringBuffer& sStrg, short nPos, sal_Boo { ShiftString( sStrg,nPos+1 ); sStrg[nPos + 1] = (sal_Unicode)'1'; - bOverflow = sal_True; + bOverflow = true; } } } void SbxBasicFormater::StrRoundDigit( OUStringBuffer& sStrg, short nPos ) { - sal_Bool bOverflow; + bool bOverflow; StrRoundDigit( sStrg, nPos, bOverflow ); } @@ -263,7 +263,7 @@ void SbxBasicFormater::InitExp( double _dNewExp ) } -short SbxBasicFormater::GetDigitAtPosScan( short nPos, sal_Bool& bFoundFirstDigit ) +short SbxBasicFormater::GetDigitAtPosScan( short nPos, bool& bFoundFirstDigit ) { // trying to read a higher digit, // e. g. position 4 in 1.234, @@ -282,11 +282,11 @@ short SbxBasicFormater::GetDigitAtPosScan( short nPos, sal_Bool& bFoundFirstDigi no += nNumExp-nPos; // query of the number's first valid digit --> set flag if( nPos==nNumExp ) - bFoundFirstDigit = sal_True; + bFoundFirstDigit = true; return (short)(sSciNumStrg[ no ] - ASCII_0); } -short SbxBasicFormater::GetDigitAtPosExpScan( short nPos, sal_Bool& bFoundFirstDigit ) +short SbxBasicFormater::GetDigitAtPosExpScan( short nPos, bool& bFoundFirstDigit ) { if( nPos>nExpExp ) return -1; @@ -295,14 +295,14 @@ short SbxBasicFormater::GetDigitAtPosExpScan( short nPos, sal_Bool& bFoundFirstD no += nExpExp-nPos; if( nPos==nExpExp ) - bFoundFirstDigit = sal_True; + bFoundFirstDigit = true; return (short)(sNumExpStrg[ no ] - ASCII_0); } // a value for the exponent can be given because the number maybe shall // not be displayed in a normed way (e. g. 1.2345e-03) but maybe 123.345e-3 ! short SbxBasicFormater::GetDigitAtPosExpScan( double dNewExponent, short nPos, - sal_Bool& bFoundFirstDigit ) + bool& bFoundFirstDigit ) { InitExp( dNewExponent ); @@ -334,7 +334,7 @@ TODO: an 'intelligent' peek-parser might be needed to detect rounding // this is used to prevent 'errors' on parsing 202 // ATTENTION: apparently there are sometimes still problems with rounding mistakes! short SbxBasicFormater::GetDigitAtPos( double dNumber, short nPos, - double& dNextNumber, sal_Bool& bFoundFirstDigit ) + double& dNextNumber, bool& bFoundFirstDigit ) { double dDigit; short nMaxDigit; @@ -347,7 +347,7 @@ short SbxBasicFormater::GetDigitAtPos( double dNumber, short nPos, if( nMaxDigit=0 ) return _NO_DIGIT; - bFoundFirstDigit = sal_True; + bFoundFirstDigit = true; for( short i=nMaxDigit; i>=nPos; i-- ) { double dI = (double)i; @@ -375,14 +375,14 @@ short SbxBasicFormater::RoundDigit( double dNumber ) // Copies the respective part of the format-string, if existing, and returns it. // So a new string is created, which has to be freed by the caller later. -OUString SbxBasicFormater::GetPosFormatString( const OUString& sFormatStrg, sal_Bool & bFound ) +OUString SbxBasicFormater::GetPosFormatString( const OUString& sFormatStrg, bool & bFound ) { - bFound = sal_False; // default... + bFound = false; // default... sal_Int32 nPos = sFormatStrg.indexOf( FORMAT_SEPARATOR ); if( nPos >= 0 ) { - bFound = sal_True; + bFound = true; // the format-string for positive numbers is // everything before the first ';' return sFormatStrg.copy( 0,nPos ); @@ -394,9 +394,9 @@ OUString SbxBasicFormater::GetPosFormatString( const OUString& sFormatStrg, sal_ } // see also GetPosFormatString() -OUString SbxBasicFormater::GetNegFormatString( const OUString& sFormatStrg, sal_Bool & bFound ) +OUString SbxBasicFormater::GetNegFormatString( const OUString& sFormatStrg, bool & bFound ) { - bFound = sal_False; // default... + bFound = false; // default... sal_Int32 nPos = sFormatStrg.indexOf( FORMAT_SEPARATOR ); if( nPos >= 0) @@ -405,7 +405,7 @@ OUString SbxBasicFormater::GetNegFormatString( const OUString& sFormatStrg, sal_ // everything between the first and the second ';' OUString sTempStrg = sFormatStrg.copy( nPos+1 ); nPos = sTempStrg.indexOf( FORMAT_SEPARATOR ); - bFound = sal_True; + bFound = true; if( nPos < 0 ) { return sTempStrg; @@ -421,9 +421,9 @@ OUString SbxBasicFormater::GetNegFormatString( const OUString& sFormatStrg, sal_ } // see also GetPosFormatString() -OUString SbxBasicFormater::Get0FormatString( const OUString& sFormatStrg, sal_Bool & bFound ) +OUString SbxBasicFormater::Get0FormatString( const OUString& sFormatStrg, bool & bFound ) { - bFound = sal_False; // default... + bFound = false; // default... sal_Int32 nPos = sFormatStrg.indexOf( FORMAT_SEPARATOR ); if( nPos >= 0 ) @@ -434,7 +434,7 @@ OUString SbxBasicFormater::Get0FormatString( const OUString& sFormatStrg, sal_Bo nPos = sTempStrg.indexOf( FORMAT_SEPARATOR ); if( nPos >= 0 ) { - bFound = sal_True; + bFound = true; sTempStrg = sTempStrg.copy( nPos+1 ); nPos = sTempStrg.indexOf( FORMAT_SEPARATOR ); if( nPos < 0 ) @@ -454,9 +454,9 @@ OUString SbxBasicFormater::Get0FormatString( const OUString& sFormatStrg, sal_Bo } // see also GetPosFormatString() -OUString SbxBasicFormater::GetNullFormatString( const OUString& sFormatStrg, sal_Bool & bFound ) +OUString SbxBasicFormater::GetNullFormatString( const OUString& sFormatStrg, bool & bFound ) { - bFound = sal_False; // default... + bFound = false; // default... sal_Int32 nPos = sFormatStrg.indexOf( FORMAT_SEPARATOR ); if( nPos >= 0 ) @@ -471,7 +471,7 @@ OUString SbxBasicFormater::GetNullFormatString( const OUString& sFormatStrg, sal nPos = sTempStrg.indexOf( FORMAT_SEPARATOR ); if( nPos >= 0 ) { - bFound = sal_True; + bFound = true; return sTempStrg.copy( nPos+1 ); } } @@ -487,8 +487,8 @@ short SbxBasicFormater::AnalyseFormatString( const OUString& sFormatStrg, short& nNoOfDigitsLeft, short& nNoOfDigitsRight, short& nNoOfOptionalDigitsLeft, short& nNoOfExponentDigits, short& nNoOfOptionalExponentDigits, - sal_Bool& bPercent, sal_Bool& bCurrency, sal_Bool& bScientific, - sal_Bool& bGenerateThousandSeparator, + bool& bPercent, bool& bCurrency, bool& bScientific, + bool& bGenerateThousandSeparator, short& nMultipleThousandSeparators ) { sal_Int32 nLen; @@ -500,9 +500,9 @@ short SbxBasicFormater::AnalyseFormatString( const OUString& sFormatStrg, nNoOfOptionalDigitsLeft = 0; nNoOfExponentDigits = 0; nNoOfOptionalExponentDigits = 0; - bPercent = sal_False; - bCurrency = sal_False; - bScientific = sal_False; + bPercent = false; + bCurrency = false; + bScientific = false; // from 11.7.97: as soon as a comma (point?) is found in the format string, // all three decimal powers are marked (i. e. thousand, million, ...) bGenerateThousandSeparator = sFormatStrg.indexOf( ',' ) >= 0; @@ -559,10 +559,10 @@ short SbxBasicFormater::AnalyseFormatString( const OUString& sFormatStrg, } break; case '%': - bPercent = sal_True; + bPercent = true; break; case '(': - bCurrency = sal_True; + bCurrency = true; break; case ',': { @@ -580,7 +580,7 @@ short SbxBasicFormater::AnalyseFormatString( const OUString& sFormatStrg, if( nNoOfDigitsLeft > 0 || nNoOfDigitsRight > 0 ) { nState = -1; // abort counting digits - bScientific = sal_True; + bScientific = true; } break; // OWN command-character which turns on @@ -590,7 +590,7 @@ short SbxBasicFormater::AnalyseFormatString( const OUString& sFormatStrg, i++; break; case CREATE_1000SEP_CHAR: - bGenerateThousandSeparator = sal_True; + bGenerateThousandSeparator = true; break; } } @@ -601,12 +601,12 @@ short SbxBasicFormater::AnalyseFormatString( const OUString& sFormatStrg, // shall be created void SbxBasicFormater::ScanFormatString( double dNumber, const OUString& sFormatStrg, OUString& sReturnStrgFinal, - sal_Bool bCreateSign ) + bool bCreateSign ) { short /*nErr,*/nNoOfDigitsLeft,nNoOfDigitsRight,nNoOfOptionalDigitsLeft, nNoOfExponentDigits,nNoOfOptionalExponentDigits, nMultipleThousandSeparators; - sal_Bool bPercent,bCurrency,bScientific,bGenerateThousandSeparator; + bool bPercent,bCurrency,bScientific,bGenerateThousandSeparator; OUStringBuffer sReturnStrg = OUStringBuffer(); @@ -646,11 +646,11 @@ void SbxBasicFormater::ScanFormatString( double dNumber, double dExponent; short i,nLen; short nState,nDigitPos,nExponentPos,nMaxDigit,nMaxExponentDigit; - sal_Bool bFirstDigit,bFirstExponentDigit,bFoundFirstDigit, + bool bFirstDigit,bFirstExponentDigit,bFoundFirstDigit, bIsNegative,bZeroSpaceOn, bSignHappend,bDigitPosNegative; - bSignHappend = sal_False; - bFoundFirstDigit = sal_False; + bSignHappend = false; + bFoundFirstDigit = false; bIsNegative = dNumber < 0.0; nLen = sFormatStrg.getLength(); dExponent = get_number_of_digits( dNumber ); @@ -671,10 +671,10 @@ void SbxBasicFormater::ScanFormatString( double dNumber, // no exponent-data is needed here! bDigitPosNegative = (nDigitPos < 0); } - bFirstDigit = sal_True; - bFirstExponentDigit = sal_True; + bFirstDigit = true; + bFirstExponentDigit = true; nState = 0; // 0 --> mantissa; 1 --> exponent - bZeroSpaceOn = 0; + bZeroSpaceOn = false; #ifdef _with_sprintf @@ -707,7 +707,7 @@ void SbxBasicFormater::ScanFormatString( double dNumber, // leading sign shall be shown with () if( bIsNegative && !bCreateSign && !bSignHappend ) { - bSignHappend = sal_True; + bSignHappend = true; sReturnStrg.append('-'); } // output redundant positions, i. e. those which @@ -724,7 +724,7 @@ void SbxBasicFormater::ScanFormatString( double dNumber, #endif if( nTempDigit!=_NO_DIGIT ) { - bFirstDigit = sal_False; + bFirstDigit = false; } if( bGenerateThousandSeparator && ( c=='0' || nMaxDigit >= nDigitPos ) && j > 0 && (j % 3 == 0) ) { @@ -737,8 +737,8 @@ void SbxBasicFormater::ScanFormatString( double dNumber, if( nMaxDigit=nDigitPos ) && nDigitPos>0 && (nDigitPos % 3 == 0) ) { @@ -773,7 +773,7 @@ void SbxBasicFormater::ScanFormatString( double dNumber, if( bFirstExponentDigit ) { // leading sign has been given out at e/E already - bFirstExponentDigit = sal_False; + bFirstExponentDigit = false; if( nMaxExponentDigit > nExponentPos ) // output redundant positions, i. e. those which // are undocumented by the format-string @@ -836,7 +836,7 @@ void SbxBasicFormater::ScanFormatString( double dNumber, break; } - sal_Bool bOverflow = sal_False; + bool bOverflow = false; #ifdef _with_sprintf short nNextDigit = GetDigitAtPosScan( nDigitPos, bFoundFirstDigit ); #else @@ -956,7 +956,7 @@ void SbxBasicFormater::ScanFormatString( double dNumber, OUString SbxBasicFormater::BasicFormatNull( const OUString& sFormatStrg ) { - sal_Bool bNullFormatFound; + bool bNullFormatFound; OUString sNullFormatStrg = GetNullFormatString( sFormatStrg, bNullFormatFound ); if( bNullFormatFound ) @@ -968,7 +968,7 @@ OUString SbxBasicFormater::BasicFormatNull( const OUString& sFormatStrg ) OUString SbxBasicFormater::BasicFormat( double dNumber, const OUString& _sFormatStrg ) { - sal_Bool bPosFormatFound,bNegFormatFound,b0FormatFound; + bool bPosFormatFound,bNegFormatFound,b0FormatFound; OUString sFormatStrg = _sFormatStrg; // analyse format-string concerning predefined formats: @@ -1036,7 +1036,7 @@ OUString SbxBasicFormater::BasicFormat( double dNumber, const OUString& _sFormat { sTempStrg = sPosFormatStrg; } - ScanFormatString( dNumber, sTempStrg, sReturnStrg,/*bCreateSign=*/sal_False ); + ScanFormatString( dNumber, sTempStrg, sReturnStrg,/*bCreateSign=*/false ); } else { @@ -1066,51 +1066,51 @@ OUString SbxBasicFormater::BasicFormat( double dNumber, const OUString& _sFormat { ScanFormatString( dNumber, (/*sPosFormatStrg!=EMPTYFORMATSTRING*/bPosFormatFound ? sPosFormatStrg : sFormatStrg), - sReturnStrg,/*bCreateSign=*/sal_False ); + sReturnStrg,/*bCreateSign=*/false ); } } return sReturnStrg; } -sal_Bool SbxBasicFormater::isBasicFormat( const OUString& sFormatStrg ) +bool SbxBasicFormater::isBasicFormat( const OUString& sFormatStrg ) { if( sFormatStrg.equalsIgnoreAsciiCase( BASICFORMAT_GENERALNUMBER ) ) { - return sal_True; + return true; } if( sFormatStrg.equalsIgnoreAsciiCase( BASICFORMAT_CURRENCY ) ) { - return sal_True; + return true; } if( sFormatStrg.equalsIgnoreAsciiCase( BASICFORMAT_FIXED ) ) { - return sal_True; + return true; } if( sFormatStrg.equalsIgnoreAsciiCase( BASICFORMAT_STANDARD ) ) { - return sal_True; + return true; } if( sFormatStrg.equalsIgnoreAsciiCase( BASICFORMAT_PERCENT ) ) { - return sal_True; + return true; } if( sFormatStrg.equalsIgnoreAsciiCase( BASICFORMAT_SCIENTIFIC ) ) { - return sal_True; + return true; } if( sFormatStrg.equalsIgnoreAsciiCase( BASICFORMAT_YESNO ) ) { - return sal_True; + return true; } if( sFormatStrg.equalsIgnoreAsciiCase( BASICFORMAT_TRUEFALSE ) ) { - return sal_True; + return true; } if( sFormatStrg.equalsIgnoreAsciiCase( BASICFORMAT_ONOFF ) ) { - return sal_True; + return true; } - return sal_False; + return false; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/basic/sbxform.hxx b/include/basic/sbxform.hxx index e77879f5da40..71ed5ab3c8d0 100644 --- a/include/basic/sbxform.hxx +++ b/include/basic/sbxform.hxx @@ -105,13 +105,13 @@ class BASIC_DLLPUBLIC SbxBasicFormater { OUString BasicFormat( double dNumber, const OUString& sFormatStrg ); OUString BasicFormatNull( const OUString& sFormatStrg ); - static sal_Bool isBasicFormat( const OUString& sFormatStrg ); + static bool isBasicFormat( const OUString& sFormatStrg ); private: BASIC_DLLPRIVATE inline void ShiftString( OUStringBuffer& sStrg, sal_uInt16 nStartPos ); BASIC_DLLPRIVATE void AppendDigit( OUStringBuffer& sStrg, short nDigit ); BASIC_DLLPRIVATE void LeftShiftDecimalPoint( OUStringBuffer& sStrg ); - BASIC_DLLPRIVATE void StrRoundDigit( OUStringBuffer& sStrg, short nPos, sal_Bool& bOverflow ); + BASIC_DLLPRIVATE void StrRoundDigit( OUStringBuffer& sStrg, short nPos, bool& bOverflow ); BASIC_DLLPRIVATE void StrRoundDigit( OUStringBuffer& sStrg, short nPos ); BASIC_DLLPRIVATE void ParseBack( OUStringBuffer& sStrg, const OUString& sFormatStrg, short nFormatPos ); @@ -119,30 +119,30 @@ class BASIC_DLLPUBLIC SbxBasicFormater { // Methods for string conversion with sprintf(): BASIC_DLLPRIVATE void InitScan( double _dNum ); BASIC_DLLPRIVATE void InitExp( double _dNewExp ); - BASIC_DLLPRIVATE short GetDigitAtPosScan( short nPos, sal_Bool& bFoundFirstDigit ); + BASIC_DLLPRIVATE short GetDigitAtPosScan( short nPos, bool& bFoundFirstDigit ); BASIC_DLLPRIVATE short GetDigitAtPosExpScan( double dNewExponent, short nPos, - sal_Bool& bFoundFirstDigit ); - BASIC_DLLPRIVATE short GetDigitAtPosExpScan( short nPos, sal_Bool& bFoundFirstDigit ); + bool& bFoundFirstDigit ); + BASIC_DLLPRIVATE short GetDigitAtPosExpScan( short nPos, bool& bFoundFirstDigit ); #else // Methods for direct 'calculation' with log10() and pow(): BASIC_DLLPRIVATE short GetDigitAtPos( double dNumber, short nPos, double& dNextNumber, - sal_Bool& bFoundFirstDigit ); + bool& bFoundFirstDigit ); BASIC_DLLPRIVATE short RoundDigit( double dNumber ); #endif - BASIC_DLLPRIVATE OUString GetPosFormatString( const OUString& sFormatStrg, sal_Bool & bFound ); - BASIC_DLLPRIVATE OUString GetNegFormatString( const OUString& sFormatStrg, sal_Bool & bFound ); - BASIC_DLLPRIVATE OUString Get0FormatString( const OUString& sFormatStrg, sal_Bool & bFound ); - BASIC_DLLPRIVATE OUString GetNullFormatString( const OUString& sFormatStrg, sal_Bool & bFound ); + BASIC_DLLPRIVATE OUString GetPosFormatString( const OUString& sFormatStrg, bool & bFound ); + BASIC_DLLPRIVATE OUString GetNegFormatString( const OUString& sFormatStrg, bool & bFound ); + BASIC_DLLPRIVATE OUString Get0FormatString( const OUString& sFormatStrg, bool & bFound ); + BASIC_DLLPRIVATE OUString GetNullFormatString( const OUString& sFormatStrg, bool & bFound ); BASIC_DLLPRIVATE short AnalyseFormatString( const OUString& sFormatStrg, short& nNoOfDigitsLeft, short& nNoOfDigitsRight, short& nNoOfOptionalDigitsLeft, short& nNoOfExponentDigits, short& nNoOfOptionalExponentDigits, - sal_Bool& bPercent, sal_Bool& bCurrency, sal_Bool& bScientific, - sal_Bool& bGenerateThousandSeparator, + bool& bPercent, bool& bCurrency, bool& bScientific, + bool& bGenerateThousandSeparator, short& nMultipleThousandSeparators ); BASIC_DLLPRIVATE void ScanFormatString( double dNumber, const OUString& sFormatStrg, - OUString& sReturnStrg, sal_Bool bCreateSign ); + OUString& sReturnStrg, bool bCreateSign ); //*** Data *** sal_Unicode cDecPoint; // sign for the decimal point diff --git a/include/basic/vbahelper.hxx b/include/basic/vbahelper.hxx index e447aa8d37e8..ee2dea3a9653 100644 --- a/include/basic/vbahelper.hxx +++ b/include/basic/vbahelper.hxx @@ -50,7 +50,7 @@ namespace vba { */ BASIC_DLLPUBLIC void lockControllersOfAllDocuments( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& rxModel, - sal_Bool bLockControllers ); + bool bLockControllers ); @@ -71,7 +71,7 @@ BASIC_DLLPUBLIC void lockControllersOfAllDocuments( */ BASIC_DLLPUBLIC void enableContainerWindowsOfAllDocuments( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& rxModel, - sal_Bool bEnableWindows ); + bool bEnableWindows ); -- cgit