From c03a4800879ab62692e017e01c825ba12a421ad0 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 1 Jul 2025 22:09:14 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 2 Signed-off-by: Michele Calgaro --- examples/sql/overview/custom1/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/sql/overview/custom1/main.cpp') diff --git a/examples/sql/overview/custom1/main.cpp b/examples/sql/overview/custom1/main.cpp index adde6e2e3..48c9fcbc0 100644 --- a/examples/sql/overview/custom1/main.cpp +++ b/examples/sql/overview/custom1/main.cpp @@ -60,8 +60,8 @@ FormDialog::FormDialog() 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