From b87533f9904c10f24d6b2e8177c00944e3efe15b Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 26 Nov 2025 15:11:22 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Manually cherry-picked from commit 4d495175 Signed-off-by: Michele Calgaro --- doc/html/sql-overview-custom1-main-cpp.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/sql-overview-custom1-main-cpp.html') diff --git a/doc/html/sql-overview-custom1-main-cpp.html b/doc/html/sql-overview-custom1-main-cpp.html index 29142df69..b704ba775 100644 --- a/doc/html/sql-overview-custom1-main-cpp.html +++ b/doc/html/sql-overview-custom1-main-cpp.html @@ -95,8 +95,8 @@ TQString CustomEdit::upperLine() const grid->activate(); staffCursor = new TQSqlCursor( "staff" ); - staffCursor->setTrimmed( "forename", TRUE ); - staffCursor->setTrimmed( "surname", TRUE ); + staffCursor->setTrimmed( "forename", true ); + staffCursor->setTrimmed( "surname", true ); idIndex = staffCursor->index( "id" ); staffCursor->select( idIndex ); staffCursor->first(); -- cgit v1.2.3