summaryrefslogtreecommitdiffstats
path: root/src/kernel/tqcursor_x11.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-12-08 15:17:51 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-12-08 19:38:03 +0900
commit7d612f7c91d55501276a385a30dbadb121e7bd9f (patch)
tree4c6f1546e16db32779dfbf5c9e107b938faee6bb /src/kernel/tqcursor_x11.cpp
parent5a863a8932d14b99c5f838c4efa1618070d71b29 (diff)
downloadtqt-7d612f7c91d55501276a385a30dbadb121e7bd9f.tar.gz
tqt-7d612f7c91d55501276a385a30dbadb121e7bd9f.zip
Replace TRUE/FALSE with boolean values true/false - part 8HEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kernel/tqcursor_x11.cpp')
-rw-r--r--src/kernel/tqcursor_x11.cpp6
1 files changed, 3 insertions, 3 deletions
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 );
}