From a4ebd73f48610ed351c9c53f3646d0597f8ea7bc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 22 Dec 2025 12:05:18 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 9 Signed-off-by: Michele Calgaro --- src/tools/tqmutexpool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tools/tqmutexpool.cpp') 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 ) { -- cgit v1.2.3