Replace TRUE/FALSE with boolean values true/false

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 90e340179f)
r14.1.x r14.1.4
Michele Calgaro 1 year ago
parent f7d83fbf8c
commit f7cfd2e7d4
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -84,8 +84,8 @@ FileDetailView::FileDetailView(TQWidget *parent, const char *name)
addColumn( i18n( "Permissions" ) );
addColumn( i18n( "Owner" ) );
addColumn( i18n( "Group" ) );
setShowSortIndicator( TRUE );
setAllColumnsShowFocus( TRUE );
setShowSortIndicator( true );
setAllColumnsShowFocus( true );
connect( header(), TQ_SIGNAL( sectionClicked(int)),
TQ_SLOT(slotSortingChanged(int) ));

@ -105,13 +105,13 @@ public:
// ### We should figure out how many loops an MNG has, but for now always assume infinite.
if (consumer)
consumer->setLooping(0);
return TRUE;
return true;
}
bool closestream( )
{
if (consumer)
consumer->end();
return TRUE;
return true;
}
bool readdata( mng_ptr pBuf, mng_uint32 iBuflen, mng_uint32p pRead )
{
@ -125,7 +125,7 @@ public:
// enough in buffer
memcpy(pBuf, buffer+ubuffer, iBuflen);
ubuffer += iBuflen;
return TRUE;
return true;
}
if ( n ) {
// consume buffer
@ -140,7 +140,7 @@ public:
data += iBuflen;
ndata -= iBuflen;
}
return TRUE;
return true;
}
bool errorproc( mng_int32 iErrorcode,
mng_int8 /*iSeverity*/,
@ -157,18 +157,18 @@ public:
(iChunkname>>8)&0xff,
(iChunkname>>0)&0xff,
iExtra1,iExtra2);
return TRUE;
return true;
}
bool processheader( mng_uint32 iWidth, mng_uint32 iHeight )
{
image->create(iWidth,iHeight,32);
image->setAlphaBuffer(TRUE);
image->setAlphaBuffer(true);
memset(image->bits(),0,iWidth*iHeight*4);
consumer->setSize(iWidth,iHeight);
mng_set_canvasstyle(handle,
TQImage::systemByteOrder() == TQImage::LittleEndian
? MNG_CANVAS_BGRA8 : MNG_CANVAS_ARGB8 );
return TRUE;
return true;
}
mng_ptr getcanvasline( mng_uint32 iLinenr )
{
@ -193,7 +193,7 @@ public:
state = Time;
losingtimer.start();
losttime -= iMsecs;
return TRUE;
return true;
}
private:
@ -490,9 +490,9 @@ void gvCleanupMngIO()
void gvInitMngIO()
{
static bool done = FALSE;
static bool done = false;
if ( !done ) {
done = TRUE;
done = true;
#ifndef TQT_NO_ASYNC_IMAGE_IO
globalMngFormatTypeObject = new MNGFormatType;
tqAddPostRoutine( gvCleanupMngIO );

@ -225,7 +225,7 @@ void setup_qt( TQImage& image, png_structp png_ptr, png_infop info_ptr )
if (!image.create(width, height, 32))
return;
image.setAlphaBuffer(TRUE);
image.setAlphaBuffer(true);
if (TQImage::systemByteOrder() == TQImage::BigEndian)
png_set_swap_alpha(png_ptr);
@ -255,7 +255,7 @@ void setup_qt( TQImage& image, png_structp png_ptr, png_infop info_ptr )
const int g = info_ptr->trans_values.gray;
#endif
if (g < ncols) {
image.setAlphaBuffer(TRUE);
image.setAlphaBuffer(true);
image.setColor(g, image.color(g) & TQT_RGB_MASK);
}
}
@ -283,7 +283,7 @@ void setup_qt( TQImage& image, png_structp png_ptr, png_infop info_ptr )
int num_trans;
png_color_16p trans_color;
png_get_tRNS(png_ptr, info_ptr, &trans_alpha, &num_trans, &trans_color);
image.setAlphaBuffer( TRUE );
image.setAlphaBuffer( true );
while ( i < num_trans ) {
image.setColor(i, tqRgba(
palette[i].red,
@ -334,7 +334,7 @@ void setup_qt( TQImage& image, png_structp png_ptr, png_infop info_ptr )
PNG_FILLER_BEFORE : PNG_FILLER_AFTER);
// We want 4 bytes, but it isn't an alpha channel
} else {
image.setAlphaBuffer(TRUE);
image.setAlphaBuffer(true);
}
if ( TQImage::systemByteOrder() == TQImage::BigEndian ) {
@ -515,14 +515,14 @@ void PNGFormat::end(png_structp png, png_infop info)
static bool skip(png_uint_32& max, png_bytep& data)
{
while (*data) {
if ( !max ) return FALSE;
if ( !max ) return false;
max--;
data++;
}
if ( !max ) return FALSE;
if ( !max ) return false;
max--;
data++; // skip to after NUL
return TRUE;
return true;
}
#endif
*/

@ -92,14 +92,14 @@ static TQString fbname( const TQString &fileName ) // get file basename (sort of
// Skip until ", read until the next ", return the rest in *buf
// Returns FALSE on error, TRUE on success
// Returns false on error, true on success
static bool read_xpm_string( TQCString &buf, TQIODevice *d,
const char * const *source, int &index )
{
if ( source ) {
buf = source[index++];
return TRUE;
return true;
}
if ( buf.size() < 69 ) //# just an approximation
@ -110,7 +110,7 @@ static bool read_xpm_string( TQCString &buf, TQIODevice *d,
int i;
while ( (c=d->getch()) != EOF && c != '"' ) { }
if ( c == EOF ) {
return FALSE;
return false;
}
i = 0;
while ( (c=d->getch()) != EOF && c != '"' ) {
@ -119,13 +119,13 @@ static bool read_xpm_string( TQCString &buf, TQIODevice *d,
buf[i++] = c;
}
if ( c == EOF ) {
return FALSE;
return false;
}
if ( i == (int)buf.size() ) // always use a 0 terminator
buf.resize( i+1 );
buf[i] = '\0';
return TRUE;
return true;
}
@ -217,7 +217,7 @@ static void read_xpm_image_or_array( TQImageIO * iio, const char * const * sourc
buf.truncate(end);
buf = buf.stripWhiteSpace();
if ( buf == "none" ) {
image.setAlphaBuffer( TRUE );
image.setAlphaBuffer( true );
int transparentColor = currentColor;
if ( image.depth() == 8 ) {
image.setColor( transparentColor,

@ -51,8 +51,8 @@ struct jpeg_comp_master {
JMETHOD(void, finish_pass, (j_compress_ptr cinfo));
/* State variables made visible to other modules */
boolean call_pass_startup; /* True if pass_startup must be called */
boolean is_last_pass; /* True during last pass */
boolean call_pass_startup; /* TRUE if pass_startup must be called */
boolean is_last_pass; /* TRUE during last pass */
};
/* Main buffer control (downsampled-data buffer) */
@ -144,7 +144,7 @@ struct jpeg_decomp_master {
JMETHOD(void, finish_output_pass, (j_decompress_ptr cinfo));
/* State variables made visible to other modules */
boolean is_dummy_pass; /* True during 1st pass for 2-pass quant */
boolean is_dummy_pass; /* TRUE during 1st pass for 2-pass quant */
};
/* Input control module */
@ -155,8 +155,8 @@ struct jpeg_input_controller {
JMETHOD(void, finish_input_pass, (j_decompress_ptr cinfo));
/* State variables made visible to other modules */
boolean has_multiple_scans; /* True if file has multiple scans */
boolean eoi_reached; /* True when EOI has been consumed */
boolean has_multiple_scans; /* TRUE if file has multiple scans */
boolean eoi_reached; /* TRUE when EOI has been consumed */
};
/* Main buffer control (downsampled-data buffer) */
@ -460,8 +460,8 @@ struct jpeg_comp_master {
JMETHOD(void, finish_pass, (j_compress_ptr cinfo));
/* State variables made visible to other modules */
boolean call_pass_startup; /* True if pass_startup must be called */
boolean is_last_pass; /* True during last pass */
boolean call_pass_startup; /* TRUE if pass_startup must be called */
boolean is_last_pass; /* TRUE during last pass */
};
/* Main buffer control (downsampled-data buffer) */
@ -551,7 +551,7 @@ struct jpeg_decomp_master {
JMETHOD(void, finish_output_pass, (j_decompress_ptr cinfo));
/* State variables made visible to other modules */
boolean is_dummy_pass; /* True during 1st pass for 2-pass quant */
boolean is_dummy_pass; /* TRUE during 1st pass for 2-pass quant */
};
/* Input control module */
@ -562,8 +562,8 @@ struct jpeg_input_controller {
JMETHOD(void, finish_input_pass, (j_decompress_ptr cinfo));
/* State variables made visible to other modules */
boolean has_multiple_scans; /* True if file has multiple scans */
boolean eoi_reached; /* True when EOI has been consumed */
boolean has_multiple_scans; /* TRUE if file has multiple scans */
boolean eoi_reached; /* TRUE when EOI has been consumed */
};
/* Main buffer control (downsampled-data buffer) */

Loading…
Cancel
Save