Kaydet (Commit) 356f1ad7 authored tarafından Noel Grandin's avatar Noel Grandin

sal_Bool->bool

Change-Id: I29b5461cd6976364a28820b1f780d060efb70a02
üst 33c7ecf8
......@@ -74,8 +74,8 @@ private:
void DoFunc( DefTokenId eOc, sal_uInt8 nAnz, const sal_Char* pExtName );
void LotusRelToScRel( sal_uInt16 nCol, sal_uInt16 nRow,
ScSingleRefData& rSRD );
sal_Bool bWK3; // alternative Codeumsetzung statt fuer < WK1
sal_Bool bWK123; // alternative for 123
bool bWK3; // alternative Codeumsetzung statt fuer < WK1
bool bWK123; // alternative for 123
// -------------------------------------------------------------------
void ReadSRD( ScSingleRefData& rSRD, sal_uInt8 nFlags );
inline void ReadCRD( ScComplexRefData& rCRD, sal_uInt8 nFlags );
......@@ -88,7 +88,7 @@ private:
void NegToken( TokenId& rParam );
// ACHTUNG: wie ~, nur wird '-(<rParam>)' gebildet
public:
LotusToSc( SvStream& aStr, rtl_TextEncoding eSrc, sal_Bool b );
LotusToSc( SvStream& aStr, rtl_TextEncoding eSrc, bool b );
virtual ConvErr Convert( const ScTokenArray*& rpErg, sal_Int32& nRest,
const FORMULA_TYPE eFT = FT_CellFormula );
......@@ -112,7 +112,7 @@ inline void LotusToSc::ReadCRD( ScComplexRefData& rCRD, sal_uInt8 nRelBit )
inline void LotusToSc::SetWK3( void )
{
bWK3 = sal_True;
bWK3 = true;
}
......
......@@ -341,7 +341,7 @@ void LotusToSc::Reset( const ScAddress& rEingPos )
}
LotusToSc::LotusToSc( SvStream &rStream, rtl_TextEncoding e, sal_Bool b ) :
LotusToSc::LotusToSc( SvStream &rStream, rtl_TextEncoding e, bool b ) :
LotusConverterBase( rStream, 128 )
{
eSrcChar = e;
......
......@@ -407,7 +407,7 @@ void OP_Formula123( SvStream& r, sal_uInt16 n )
sal_Int32 nBytesLeft = (n > 12) ? n - 12 : 0;
ScAddress aAddress( nCol, nRow, nTab );
LotusToSc aConv( r, pLotusRoot->eCharsetQ, sal_True );
LotusToSc aConv( r, pLotusRoot->eCharsetQ, true );
aConv.Reset( aAddress );
aConv.Convert( pErg, nBytesLeft );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment