summaryrefslogtreecommitdiffstats
path: root/src/tools/tqmutexpool.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-12-22 12:05:18 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-12-22 12:13:05 +0900
commita4ebd73f48610ed351c9c53f3646d0597f8ea7bc (patch)
tree2edd219eef4cb8f35bb3844d06902ae8b2fcb565 /src/tools/tqmutexpool.cpp
parent7d612f7c91d55501276a385a30dbadb121e7bd9f (diff)
downloadtqt-rename/true-false-9.tar.gz
tqt-rename/true-false-9.zip
Replace TRUE/FALSE with boolean values true/false - part 9rename/true-false-9
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tools/tqmutexpool.cpp')
-rw-r--r--src/tools/tqmutexpool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/tqmutexpool.cpp b/src/tools/tqmutexpool.cpp
index a7b17da3d..74e5926dc 100644
--- a/src/tools/tqmutexpool.cpp
+++ b/src/tools/tqmutexpool.cpp
@@ -100,14 +100,14 @@ TQ_EXPORT TQMutexPool *tqt_global_mutexpool = 0;
/*!
Constructs a TQMutexPool, reserving space for \a size TQMutexes. If
- \a recursive is TRUE, all TQMutexes in the pool will be recursive
+ \a recursive is true, all TQMutexes in the pool will be recursive
mutexes; otherwise they will all be non-recursive (the default).
The TQMutexes are created when needed, and deleted when the
TQMutexPool is destructed.
*/
TQMutexPool::TQMutexPool( bool recursive, int size )
- : mutex( FALSE ), count( size ), recurs( recursive )
+ : mutex( false ), count( size ), recurs( recursive )
{
mutexes = new TQMutex*[count];
for ( int index = 0; index < count; ++index ) {