From 7d612f7c91d55501276a385a30dbadb121e7bd9f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 8 Dec 2025 15:17:51 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 8 Signed-off-by: Michele Calgaro --- src/kernel/tqcursor_x11.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/kernel/tqcursor_x11.cpp') diff --git a/src/kernel/tqcursor_x11.cpp b/src/kernel/tqcursor_x11.cpp index 6a66e3cda..2ff9bad05 100644 --- a/src/kernel/tqcursor_x11.cpp +++ b/src/kernel/tqcursor_x11.cpp @@ -130,7 +130,7 @@ TQCursor *TQCursor::find_cur( int shape ) // find predefined cursor } -static bool initialized = FALSE; +static bool initialized = false; /*! Internal function that deinitializes the predefined cursors. @@ -149,7 +149,7 @@ void TQCursor::cleanup() delete cursorTable[shape].data; cursorTable[shape].data = 0; } - initialized = FALSE; + initialized = false; } @@ -165,7 +165,7 @@ void TQCursor::initialize() int shape; for( shape = 0; shape <= LastCursor; shape++ ) cursorTable[shape].data = new TQCursorData( shape ); - initialized = TRUE; + initialized = true; tqAddPostRoutine( cleanup ); } -- cgit v1.2.3