summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-05-31 15:52:17 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-05-31 15:54:51 +0900
commit8483cf7812aa66af0d8b9b80f8a3e06730b158c6 (patch)
tree0ac6b92103b67eccc0e6eb7ac6173b8d37b83261
parent9030d14de28b1b5c3284f5104141cd20692e9d36 (diff)
sal_Bool to bool
Change-Id: Idce2e9d650e9ff0d0e4fe17eeb06721cb73241e4
-rw-r--r--vcl/source/filter/ixbm/xbmread.cxx42
-rw-r--r--vcl/source/filter/ixbm/xbmread.hxx6
-rw-r--r--vcl/source/filter/ixpm/xpmread.cxx88
-rw-r--r--vcl/source/filter/ixpm/xpmread.hxx20
4 files changed, 78 insertions, 78 deletions
diff --git a/vcl/source/filter/ixbm/xbmread.cxx b/vcl/source/filter/ixbm/xbmread.cxx
index fc725f00b096..0e4b22c51885 100644
--- a/vcl/source/filter/ixbm/xbmread.cxx
+++ b/vcl/source/filter/ixbm/xbmread.cxx
@@ -33,7 +33,7 @@ XBMReader::XBMReader( SvStream& rStm ) :
nLastPos ( rStm.Tell() ),
nWidth ( 0 ),
nHeight ( 0 ),
- bStatus ( sal_True )
+ bStatus ( true )
{
pHexTable = new short[ 256 ];
maUpperName = OUString("SVIXBM");
@@ -96,7 +96,7 @@ OString XBMReader::FindTokenLine( SvStream* pInStm, const char* pTok1,
OString aRet;
sal_Int32 nPos1, nPos2, nPos3;
- bStatus = sal_False;
+ bStatus = false;
do
{
@@ -107,23 +107,23 @@ OString XBMReader::FindTokenLine( SvStream* pInStm, const char* pTok1,
{
if( ( nPos1 = aRet.indexOf( pTok1 ) ) != -1 )
{
- bStatus = sal_True;
+ bStatus = true;
if( pTok2 )
{
- bStatus = sal_False;
+ bStatus = false;
if( ( ( nPos2 = aRet.indexOf( pTok2 ) ) != -1 ) &&
( nPos2 > nPos1 ) )
{
- bStatus = sal_True;
+ bStatus = true;
if( pTok3 )
{
- bStatus = sal_False;
+ bStatus = false;
if( ( ( nPos3 = aRet.indexOf( pTok3 ) ) != -1 ) && ( nPos3 > nPos2 ) )
- bStatus = sal_True;
+ bStatus = true;
}
}
}
@@ -186,7 +186,7 @@ long XBMReader::ParseDefine( const sal_Char* pDefine )
// ------------------------------------------------------------------------
-sal_Bool XBMReader::ParseData( SvStream* pInStm, const OString& aLastLine, XBMFormat eFormat )
+bool XBMReader::ParseData( SvStream* pInStm, const OString& aLastLine, XBMFormat eFormat )
{
OString aLine;
long nRow = 0;
@@ -195,7 +195,7 @@ sal_Bool XBMReader::ParseData( SvStream* pInStm, const OString& aLastLine, XBMFo
long nBit;
sal_uInt16 nValue;
sal_uInt16 nDigits;
- sal_Bool bFirstLine = sal_True;
+ bool bFirstLine = true;
while( nRow < nHeight )
{
@@ -207,7 +207,7 @@ sal_Bool XBMReader::ParseData( SvStream* pInStm, const OString& aLastLine, XBMFo
if( (nPos = ( aLine = aLastLine ).indexOf('{') ) != -1 )
aLine = aLine.copy(nPos + 1);
- bFirstLine = sal_False;
+ bFirstLine = false;
}
else if( !pInStm->ReadLine( aLine ) )
break;
@@ -220,7 +220,7 @@ sal_Bool XBMReader::ParseData( SvStream* pInStm, const OString& aLastLine, XBMFo
{
const OString aToken(comphelper::string::getToken(aLine,i, ','));
const sal_Int32 nLen = aToken.getLength();
- sal_Bool bProcessed = sal_False;
+ bool bProcessed = false;
nBit = nDigits = nValue = 0;
@@ -233,11 +233,11 @@ sal_Bool XBMReader::ParseData( SvStream* pInStm, const OString& aLastLine, XBMFo
{
nValue = ( nValue << 4 ) + nTable;
nDigits++;
- bProcessed = sal_True;
+ bProcessed = true;
}
else if( ( nTable < 0 ) && nDigits )
{
- bProcessed = sal_True;
+ bProcessed = true;
break;
}
}
@@ -254,7 +254,7 @@ sal_Bool XBMReader::ParseData( SvStream* pInStm, const OString& aLastLine, XBMFo
}
}
- return sal_True;
+ return true;
}
// ------------------------------------------------------------------------
@@ -273,7 +273,7 @@ ReadState XBMReader::ReadXBM( Graphic& rGraphic )
if ( rIStm.GetError() != ERRCODE_IO_PENDING )
{
rIStm.Seek( nLastPos );
- bStatus = sal_False;
+ bStatus = false;
OString aLine = FindTokenLine( &rIStm, "#define", "_width" );
if ( bStatus )
@@ -293,7 +293,7 @@ ReadState XBMReader::ReadXBM( Graphic& rGraphic )
}
}
else
- bStatus = sal_False;
+ bStatus = false;
if ( bStatus )
{
@@ -311,7 +311,7 @@ ReadState XBMReader::ReadXBM( Graphic& rGraphic )
else if (aLine.indexOf("char") != -1)
eFormat = XBM11;
else
- bStatus = sal_False;
+ bStatus = false;
if ( bStatus && nWidth && nHeight )
{
@@ -325,7 +325,7 @@ ReadState XBMReader::ReadXBM( Graphic& rGraphic )
bStatus = ParseData( &rIStm, aLine, eFormat );
}
else
- bStatus = sal_False;
+ bStatus = false;
}
}
}
@@ -357,11 +357,11 @@ ReadState XBMReader::ReadXBM( Graphic& rGraphic )
// - ImportXBM -
// -------------
-sal_Bool ImportXBM( SvStream& rStm, Graphic& rGraphic )
+bool ImportXBM( SvStream& rStm, Graphic& rGraphic )
{
XBMReader* pXBMReader = (XBMReader*) rGraphic.GetContext();
ReadState eReadState;
- sal_Bool bRet = sal_True;
+ bool bRet = true;
if( !pXBMReader )
pXBMReader = new XBMReader( rStm );
@@ -371,7 +371,7 @@ sal_Bool ImportXBM( SvStream& rStm, Graphic& rGraphic )
if( eReadState == XBMREAD_ERROR )
{
- bRet = sal_False;
+ bRet = false;
delete pXBMReader;
}
else if( eReadState == XBMREAD_OK )
diff --git a/vcl/source/filter/ixbm/xbmread.hxx b/vcl/source/filter/ixbm/xbmread.hxx
index 4b5b60124d19..ce2cfe079092 100644
--- a/vcl/source/filter/ixbm/xbmread.hxx
+++ b/vcl/source/filter/ixbm/xbmread.hxx
@@ -49,13 +49,13 @@ class XBMReader : public GraphicReader
long nLastPos;
long nWidth;
long nHeight;
- sal_Bool bStatus;
+ bool bStatus;
void InitTable();
OString FindTokenLine( SvStream* pInStm, const char* pTok1,
const char* pTok2 = NULL, const char* pTok3 = NULL );
long ParseDefine( const sal_Char* pDefine );
- sal_Bool ParseData( SvStream* pInStm, const OString& aLastLine, XBMFormat eFormat );
+ bool ParseData( SvStream* pInStm, const OString& aLastLine, XBMFormat eFormat );
public:
@@ -68,7 +68,7 @@ public:
#endif // _XBMPRIVATE
-sal_Bool ImportXBM( SvStream& rStream, Graphic& rGraphic );
+bool ImportXBM( SvStream& rStream, Graphic& rGraphic );
#endif // _XBMREAD_HXX
diff --git a/vcl/source/filter/ixpm/xpmread.cxx b/vcl/source/filter/ixpm/xpmread.cxx
index 472a5c6f2159..3a8597840f2b 100644
--- a/vcl/source/filter/ixpm/xpmread.cxx
+++ b/vcl/source/filter/ixpm/xpmread.cxx
@@ -37,8 +37,8 @@ XPMReader::XPMReader( SvStream& rStm ) :
mnHeight ( 0 ),
mnColors ( 0 ),
mnCpp ( 0 ),
- mbTransparent ( sal_False ),
- mbStatus ( sal_True ),
+ mbTransparent ( false ),
+ mbStatus ( true ),
mnStatus ( 0 ),
mnIdentifier ( XPMIDENTIFIER ),
mcThisByte ( 0 ),
@@ -73,14 +73,14 @@ ReadState XPMReader::ReadXPM( Graphic& rGraphic )
if ( mrIStm.GetError() != ERRCODE_IO_PENDING )
{
mrIStm.Seek( mnLastPos );
- mbStatus = sal_True;
+ mbStatus = true;
if ( mbStatus )
{
mpStringBuf = new sal_uInt8 [ XPMSTRINGBUF ];
mpTempBuf = new sal_uInt8 [ XPMTEMPBUFSIZE ];
- if ( ( mbStatus = ImplGetString() ) == sal_True )
+ if ( ( mbStatus = ImplGetString() ) )
{
mnIdentifier = XPMVALUES; // Bitmap informationen einholen
mnWidth = ImplGetULONG( 0 );
@@ -89,9 +89,9 @@ ReadState XPMReader::ReadXPM( Graphic& rGraphic )
mnCpp = ImplGetULONG( 3 );
}
if ( mnColors > ( SAL_MAX_UINT32 / ( 4 + mnCpp ) ) )
- mbStatus = sal_False;
+ mbStatus = false;
if ( ( mnWidth * mnCpp ) >= XPMSTRINGBUF )
- mbStatus = sal_False;
+ mbStatus = false;
if ( mbStatus && mnWidth && mnHeight && mnColors && mnCpp )
{
mnIdentifier = XPMCOLORS;
@@ -105,15 +105,15 @@ ReadState XPMReader::ReadXPM( Graphic& rGraphic )
{
for ( sal_uLong i = 0; i < mnColors; i++ )
{
- if ( ImplGetColor( i ) == sal_False )
+ if ( !ImplGetColor( i ) )
{
- mbStatus = sal_False;
+ mbStatus = false;
break;
}
}
}
else
- mbStatus = sal_False;
+ mbStatus = false;
if ( mbStatus )
{
@@ -131,12 +131,12 @@ ReadState XPMReader::ReadXPM( Graphic& rGraphic )
maBmp = Bitmap( Size( mnWidth, mnHeight ), nBits );
mpAcc = maBmp.AcquireWriteAccess();
- // mbTransparent ist sal_True wenn mindestens eine Farbe Transparent ist
+ // mbTransparent ist true wenn mindestens eine Farbe Transparent ist
if ( mbTransparent )
{
maMaskBmp = Bitmap( Size( mnWidth, mnHeight ), 1 );
if ( ( mpMaskAcc = maMaskBmp.AcquireWriteAccess() ) == NULL )
- mbStatus = sal_False;
+ mbStatus = false;
}
if( mpAcc && mbStatus )
{
@@ -167,9 +167,9 @@ ReadState XPMReader::ReadXPM( Graphic& rGraphic )
mnIdentifier = XPMPIXELS;
for ( i = 0; i < mnHeight; i++ )
{
- if ( ImplGetScanLine( i ) == sal_False )
+ if ( !ImplGetScanLine( i ) )
{
- mbStatus = sal_False;
+ mbStatus = false;
break;
}
}
@@ -216,13 +216,13 @@ ReadState XPMReader::ReadXPM( Graphic& rGraphic )
// ------------------------------------------------------------------------
// ImplGetColor ermittelt saemtliche Farbwerte,
-// die Rueckgabe ist sal_True wenn saemtliche Farben zugeordnet werden konnten
+// die Rueckgabe ist true wenn saemtliche Farben zugeordnet werden konnten
-sal_Bool XPMReader::ImplGetColor( sal_uLong nNumb )
+bool XPMReader::ImplGetColor( sal_uLong nNumb )
{
sal_uInt8* pString = mpStringBuf;
sal_uInt8* pPtr = ( mpColMap + nNumb * ( 4 + mnCpp ) );
- sal_Bool bStatus = ImplGetString();
+ bool bStatus = ImplGetString();
if ( bStatus )
{
@@ -237,9 +237,9 @@ sal_Bool XPMReader::ImplGetColor( sal_uLong nNumb )
// ImpGetScanLine liest den String mpBufSize aus und schreibt die Pixel in die
// Bitmap. Der Parameter nY gibt die horizontale Position an.
-sal_Bool XPMReader::ImplGetScanLine( sal_uLong nY )
+bool XPMReader::ImplGetScanLine( sal_uLong nY )
{
- sal_Bool bStatus = ImplGetString();
+ bool bStatus = ImplGetString();
sal_uInt8* pString = mpStringBuf;
sal_uInt8* pColor;
BitmapColor aWhite;
@@ -253,7 +253,7 @@ sal_Bool XPMReader::ImplGetScanLine( sal_uLong nY )
aBlack = mpMaskAcc->GetBestMatchingColor( Color( COL_BLACK ) );
}
if ( mnStringSize != ( mnWidth * mnCpp ))
- bStatus = sal_False;
+ bStatus = false;
else
{
sal_uLong i, j;
@@ -276,7 +276,7 @@ sal_Bool XPMReader::ImplGetScanLine( sal_uLong nY )
pColor = mpColMap;
for ( j = 0; j < mnColors; j++ )
{
- if ( ImplCompare( pString, pColor, mnCpp, XPMCASESENSITIVE ) == sal_True )
+ if ( ImplCompare( pString, pColor, mnCpp, XPMCASESENSITIVE ) )
{
if ( mnColors > 256 )
mpAcc->SetPixel( nY, i, Color ( pColor[3], pColor[4], pColor[5] ) );
@@ -304,11 +304,11 @@ sal_Bool XPMReader::ImplGetScanLine( sal_uLong nY )
// wurde eine Farbe gefunden wird an pDest[1]..pDest[2] der RGB wert geschrieben
// pDest[0] enthaelt 0xff wenn die Farbe transparent ist sonst 0
-sal_Bool XPMReader::ImplGetColSub( sal_uInt8* pDest )
+bool XPMReader::ImplGetColSub( sal_uInt8* pDest )
{
unsigned char cTransparent[] = "None";
- sal_Bool bColStatus = sal_False;
+ bool bColStatus = false;
if ( ImplGetColKey( 'c' ) || ImplGetColKey( 'm' ) || ImplGetColKey( 'g' ) )
{
@@ -316,7 +316,7 @@ sal_Bool XPMReader::ImplGetColSub( sal_uInt8* pDest )
if ( *mpPara == '#' )
{
*pDest++ = 0;
- bColStatus = sal_True;
+ bColStatus = true;
switch ( mnParaSize )
{
case 25 :
@@ -329,7 +329,7 @@ sal_Bool XPMReader::ImplGetColSub( sal_uInt8* pDest )
ImplGetRGBHex ( pDest, 0 );
break;
default:
- bColStatus = sal_False;
+ bColStatus = false;
break;
}
}
@@ -337,8 +337,8 @@ sal_Bool XPMReader::ImplGetColSub( sal_uInt8* pDest )
else if ( ImplCompare( &cTransparent[0], mpPara, 4 ))
{
*pDest++ = 0xff;
- bColStatus = sal_True;
- mbTransparent = sal_True;
+ bColStatus = true;
+ mbTransparent = true;
}
// last we will try to get the colorname
else if ( mnParaSize > 2 ) // name must enlarge the minimum size
@@ -353,7 +353,7 @@ sal_Bool XPMReader::ImplGetColSub( sal_uInt8* pDest )
if ( ImplCompare ( (unsigned char*)pRGBTable[ i ].name,
mpPara, mnParaSize, XPMCASENONSENSITIVE ) )
{
- bColStatus = sal_True;
+ bColStatus = true;
*pDest++ = 0;
*pDest++ = pRGBTable[ i ].red;
*pDest++ = pRGBTable[ i ].green;
@@ -369,9 +369,9 @@ sal_Bool XPMReader::ImplGetColSub( sal_uInt8* pDest )
// ------------------------------------------------------------------------
// ImplGetColKey durchsuch den String mpStringBuf nach einem Parameter 'nKey'
-// und gibt einen sal_Bool zurueck. ( wenn sal_True werden mpPara und mnParaSize gesetzt )
+// und gibt einen bool zurueck. ( wenn true werden mpPara und mnParaSize gesetzt )
-sal_Bool XPMReader::ImplGetColKey( sal_uInt8 nKey )
+bool XPMReader::ImplGetColKey( sal_uInt8 nKey )
{
sal_uInt8 nTemp, nPrev = ' ';
@@ -408,7 +408,7 @@ sal_Bool XPMReader::ImplGetColKey( sal_uInt8 nKey )
}
}
}
- return ( mnParaSize ) ? sal_True : sal_False;
+ return ( mnParaSize ) ? true : false;
}
// ------------------------------------------------------------------------
@@ -466,9 +466,9 @@ sal_uLong XPMReader::ImplGetULONG( sal_uLong nPara )
// ------------------------------------------------------------------------
-sal_Bool XPMReader::ImplCompare( sal_uInt8* pSource, sal_uInt8* pDest, sal_uLong nSize, sal_uLong nMode )
+bool XPMReader::ImplCompare( sal_uInt8* pSource, sal_uInt8* pDest, sal_uLong nSize, sal_uLong nMode )
{
- sal_Bool bRet = sal_True;
+ bool bRet = true;
if ( nMode == XPMCASENONSENSITIVE )
{
@@ -476,7 +476,7 @@ sal_Bool XPMReader::ImplCompare( sal_uInt8* pSource, sal_uInt8* pDest, sal_uLong
{
if ( ( pSource[i]&~0x20 ) != ( pDest[i]&~0x20 ) )
{
- bRet = sal_False;
+ bRet = false;
break;
}
}
@@ -487,7 +487,7 @@ sal_Bool XPMReader::ImplCompare( sal_uInt8* pSource, sal_uInt8* pDest, sal_uLong
{
if ( pSource[i] != pDest[i] )
{
- bRet = sal_False;
+ bRet = false;
break;
}
}
@@ -498,10 +498,10 @@ sal_Bool XPMReader::ImplCompare( sal_uInt8* pSource, sal_uInt8* pDest, sal_uLong
// ------------------------------------------------------------------------
// ImplGetPara versucht den nNumb ( 0...x ) Parameter aus mpStringBuf zu ermitteln.
// Ein Parameter ist durch Spaces oder Tabs von den anderen getrennt.
-// Konnte der Parameter gefunden werden ist der Rueckgabewert sal_True und mpPara + mnParaSize
+// Konnte der Parameter gefunden werden ist der Rueckgabewert true und mpPara + mnParaSize
// werden gesetzt.
-sal_Bool XPMReader::ImplGetPara ( sal_uLong nNumb )
+bool XPMReader::ImplGetPara ( sal_uLong nNumb )
{
sal_uInt8 nByte;
sal_uLong pSize = 0;
@@ -548,7 +548,7 @@ sal_Bool XPMReader::ImplGetPara ( sal_uLong nNumb )
pSize++;
pPtr++;
}
- return ( ( nCount == nNumb ) && ( mpPara ) ) ? sal_True : sal_False;
+ return ( ( nCount == nNumb ) && ( mpPara ) );
}
// ------------------------------------------------------------------------
@@ -556,7 +556,7 @@ sal_Bool XPMReader::ImplGetPara ( sal_uLong nNumb )
// mnStringSize enthaelt die Groesse des gelesenen Strings.
// Bemerkungen wie '//' und '/*.....*/' werden uebersprungen.
-sal_Bool XPMReader::ImplGetString( void )
+bool XPMReader::ImplGetString( void )
{
sal_uInt8 sID[] = "/* XPM */";
sal_uInt8* pString = mpStringBuf;
@@ -578,13 +578,13 @@ sal_Bool XPMReader::ImplGetString( void )
{
if ( mnTempAvail <= 50 )
{
- mbStatus = sal_False; // file is too short to be a correct XPM format
+ mbStatus = false; // file is too short to be a correct XPM format
break;
}
for ( int i = 0; i < 9; i++ ) // searching for "/* XPM */"
if ( *mpTempPtr++ != sID[i] )
{
- mbStatus = sal_False;
+ mbStatus = false;
break;
}
mnTempAvail-=9;
@@ -616,7 +616,7 @@ sal_Bool XPMReader::ImplGetString( void )
}
if ( mnStringSize >= ( XPMSTRINGBUF - 1 ) )
{
- mbStatus = sal_False;
+ mbStatus = false;
break;
}
*pString++ = mcThisByte;
@@ -654,11 +654,11 @@ sal_Bool XPMReader::ImplGetString( void )
// - ImportXPM -
// -------------
-sal_Bool ImportXPM( SvStream& rStm, Graphic& rGraphic )
+bool ImportXPM( SvStream& rStm, Graphic& rGraphic )
{
XPMReader* pXPMReader = (XPMReader*) rGraphic.GetContext();
ReadState eReadState;
- sal_Bool bRet = sal_True;
+ bool bRet = true;
if( !pXPMReader )
pXPMReader = new XPMReader( rStm );
@@ -668,7 +668,7 @@ sal_Bool ImportXPM( SvStream& rStm, Graphic& rGraphic )
if( eReadState == XPMREAD_ERROR )
{
- bRet = sal_False;
+ bRet = false;
delete pXPMReader;
}
else if( eReadState == XPMREAD_OK )
diff --git a/vcl/source/filter/ixpm/xpmread.hxx b/vcl/source/filter/ixpm/xpmread.hxx
index cf16eec9acb3..3419c64c08fc 100644
--- a/vcl/source/filter/ixpm/xpmread.hxx
+++ b/vcl/source/filter/ixpm/xpmread.hxx
@@ -69,8 +69,8 @@ private:
sal_uLong mnHeight;
sal_uLong mnColors;
sal_uLong mnCpp; // characters per pix
- sal_Bool mbTransparent;
- sal_Bool mbStatus;
+ bool mbTransparent;
+ bool mbStatus;
sal_uLong mnStatus;
sal_uLong mnIdentifier;
sal_uInt8 mcThisByte;
@@ -85,14 +85,14 @@ private:
sal_uLong mnParaSize;
sal_uInt8* mpPara;
- sal_Bool ImplGetString( void );
- sal_Bool ImplGetColor( sal_uLong );
- sal_Bool ImplGetScanLine( sal_uLong );
- sal_Bool ImplGetColSub( sal_uInt8* );
- sal_Bool ImplGetColKey( sal_uInt8 );
+ bool ImplGetString( void );
+ bool ImplGetColor( sal_uLong );
+ bool ImplGetScanLine( sal_uLong );
+ bool ImplGetColSub( sal_uInt8* );
+ bool ImplGetColKey( sal_uInt8 );
void ImplGetRGBHex( sal_uInt8*, sal_uLong );
- sal_Bool ImplGetPara( sal_uLong numb );
- sal_Bool ImplCompare( sal_uInt8*, sal_uInt8*, sal_uLong, sal_uLong nmode = XPMCASENONSENSITIVE );
+ bool ImplGetPara( sal_uLong numb );
+ bool ImplCompare( sal_uInt8*, sal_uInt8*, sal_uLong, sal_uLong nmode = XPMCASENONSENSITIVE );
sal_uLong ImplGetULONG( sal_uLong nPara );
public:
@@ -104,7 +104,7 @@ public:
#endif // _XPMPRIVATE
-sal_Bool ImportXPM( SvStream& rStream, Graphic& rGraphic );
+bool ImportXPM( SvStream& rStream, Graphic& rGraphic );
#endif // _XPMREAD_HXX