From b6fa5c8b166849065f495768a19625d7e8d98ff0 Mon Sep 17 00:00:00 2001
From: Michele Calgaro <michele.calgaro@yahoo.it>
Date: Fri, 28 Mar 2025 12:35:44 +0900
Subject: Replace TRUE/FALSE with boolean values true/false

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
---
 src/basket.h        |  2 +-
 src/colorpicker.cpp |  2 +-
 src/qeffects.cpp    | 56 ++++++++++++++++++++++++++---------------------------
 3 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/src/basket.h b/src/basket.h
index 35254f1..7d33745 100644
--- a/src/basket.h
+++ b/src/basket.h
@@ -151,7 +151,7 @@ class TransparentWidget : public TQWidget
   public:
 	TransparentWidget(Basket *basket);
 	void setPosition(int x, int y);
-	//void reparent(TQWidget *parent, WFlags f, const TQPoint &p, bool showIt = FALSE);
+	//void reparent(TQWidget *parent, WFlags f, const TQPoint &p, bool showIt = false);
   protected:
 	void paintEvent(TQPaintEvent*);
 	void mouseMoveEvent(TQMouseEvent *event);
diff --git a/src/colorpicker.cpp b/src/colorpicker.cpp
index 57e34de..17a3ffa 100644
--- a/src/colorpicker.cpp
+++ b/src/colorpicker.cpp
@@ -28,7 +28,7 @@
 
 /* From TQt documentation:
  * " Note that only visible widgets can grab mouse input.
- *   If isVisible() returns FALSE for a widget, that widget cannot call grabMouse(). "
+ *   If isVisible() returns false for a widget, that widget cannot call grabMouse(). "
  * So, we should use an always visible widget to be able to pick a color from screen,
  * even by first hidding the main window (user seldomly want to grab a color from BasKet!)
  * or use a global shortcut (main window can be hidden when hitting that shortcut).
diff --git a/src/qeffects.cpp b/src/qeffects.cpp
index 5a36f17..2185b4a 100644
--- a/src/qeffects.cpp
+++ b/src/qeffects.cpp
@@ -69,7 +69,7 @@ TQAlphaWidget::TQAlphaWidget( TQWidget* w, WFlags f )
 			   "tqt internal alpha effect widget", f )
 {
 #if 1 //ndef TQ_WS_WIN
-    setEnabled( FALSE );
+    setEnabled( false );
 #endif
 
     pm.setOptimization( TQPixmap::BestOptim );
@@ -103,7 +103,7 @@ void TQAlphaWidget::run( int time )
 	elapsed = 0;
 	checkTime.start();
 
-	showWidget = TRUE;
+	showWidget = true;
 	tqApp->installEventFilter( this );
 
 	widget->setWState( WState_Visible );
@@ -123,7 +123,7 @@ void TQAlphaWidget::run( int time )
 		mixed = back.copy();
 		pm = mixed;
 		show();
-		setEnabled(FALSE);
+		setEnabled(false);
 
 		connect( &anim, TQ_SIGNAL(timeout()), this, TQ_SLOT(render()));
 		anim.start( 1 );
@@ -155,15 +155,15 @@ bool TQAlphaWidget::eventFilter( TQObject* o, TQEvent* e )
 	    break;
 #endif
 		case TQEvent::MouseButtonDblClick:
-			setEnabled(TRUE);
-			showWidget = FALSE;
+			setEnabled(true);
+			showWidget = false;
 			render();
 			break;
 		case TQEvent::KeyPress:
 		{
 			TQKeyEvent *ke = (TQKeyEvent*)e;
 			if ( ke->key() == Key_Escape )
-				showWidget = FALSE;
+				showWidget = false;
 			else
 				duration = 0;
 			render();
@@ -184,7 +184,7 @@ void TQAlphaWidget::closeEvent( TQCloseEvent *e )
 	if ( !q_blend )
 		return;
 
-	showWidget = FALSE;
+	showWidget = false;
 	render();
 
 	TQWidget::closeEvent( e );
@@ -215,7 +215,7 @@ void TQAlphaWidget::render()
 		if ( widget ) {
 			if ( !showWidget ) {
 #ifdef TQ_WS_WIN
-                setEnabled(TRUE);
+                setEnabled(true);
                 setFocus();
 #endif
 		widget->hide();
@@ -251,7 +251,7 @@ void TQAlphaWidget::render()
 			widget->clearWState( WState_ForceHide );
 		alphaBlend();
 		pm = mixed;
-		repaint( FALSE );
+		repaint( false );
 	}
 }
 
@@ -300,7 +300,7 @@ TQRollEffect::TQRollEffect( TQWidget* w, WFlags f, DirFlags orient )
 			   "tqt internal roll effect widget", f ), orientation(orient)
 {
 #if 1 //ndef TQ_WS_WIN
-    setEnabled( FALSE );
+    setEnabled( false );
 #endif
     widget = (TQAccessWidget*) w;
     Q_ASSERT( widget );
@@ -336,7 +336,7 @@ void TQRollEffect::paintEvent( TQPaintEvent* )
 	int y = orientation & DownScroll ? TQMIN(0, currentHeight - totalHeight) : 0;
 
 	bitBlt( this, x, y, &pm,
-			0, 0, pm.width(), pm.height(), CopyROP, TRUE );
+			0, 0, pm.width(), pm.height(), CopyROP, true );
 }
 
 /*
@@ -355,9 +355,9 @@ bool TQRollEffect::eventFilter( TQObject* o, TQEvent* e )
 		case TQEvent::Close:
 			if ( o != widget || done )
 				break;
-			setEnabled(TRUE);
-			showWidget = FALSE;
-			done = TRUE;
+			setEnabled(true);
+			showWidget = false;
+			done = true;
 			scroll();
 			break;
 		case TQEvent::MouseButtonPress:
@@ -368,9 +368,9 @@ bool TQRollEffect::eventFilter( TQObject* o, TQEvent* e )
 		case TQEvent::MouseButtonDblClick:
 			if ( done )
 				break;
-			setEnabled(TRUE);
-			showWidget = FALSE;
-			done = TRUE;
+			setEnabled(true);
+			showWidget = false;
+			done = true;
 			scroll();
 			break;
 		case TQEvent::KeyPress:
@@ -385,8 +385,8 @@ bool TQRollEffect::eventFilter( TQObject* o, TQEvent* e )
 
 
 			if ( ke->key() == Key_Escape )
-				showWidget = FALSE;
-			done = TRUE;
+				showWidget = false;
+			done = true;
 			scroll();
 			break;
 		}
@@ -404,8 +404,8 @@ void TQRollEffect::closeEvent( TQCloseEvent *e )
 	e->accept();
 	if ( done )
 		return;
-	showWidget = FALSE;
-	done = TRUE;
+	showWidget = false;
+	done = true;
 	scroll();
 
 	TQWidget::closeEvent( e );
@@ -442,12 +442,12 @@ void TQRollEffect::run( int time )
 	resize( TQMIN( currentWidth, totalWidth ), TQMIN( currentHeight, totalHeight ) );
 
 	show();
-	setEnabled(FALSE);
+	setEnabled(false);
 
 	tqApp->installEventFilter( this );
 
-	showWidget = TRUE;
-	done = FALSE;
+	showWidget = true;
+	done = false;
 	anim.start( 1 );
 	checkTime.start();
 }
@@ -492,7 +492,7 @@ void TQRollEffect::scroll()
 		if ( orientation & DownScroll || orientation & UpScroll )
 			h = TQMIN( currentHeight, totalHeight );
 
-		setUpdatesEnabled( FALSE );
+		setUpdatesEnabled( false );
 		if ( orientation & UpScroll )
 			y = widget->geometry().y() + TQMAX( 0, totalHeight - currentHeight );
 		if ( orientation & LeftScroll )
@@ -501,8 +501,8 @@ void TQRollEffect::scroll()
 			move( x, y );
 
 		resize( w, h );
-		setUpdatesEnabled( TRUE );
-		repaint( FALSE );
+		setUpdatesEnabled( true );
+		repaint( false );
 	}
 	if ( done ) {
 		anim.stop();
@@ -510,7 +510,7 @@ void TQRollEffect::scroll()
 		if ( widget ) {
 			if ( !showWidget ) {
 #ifdef TQ_WS_WIN
-                setEnabled(TRUE);
+                setEnabled(true);
                 setFocus();
 #endif
 		widget->hide();
-- 
cgit v1.2.3

