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/sqltable/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/sql/sqltable/main.cpp') diff --git a/examples/sql/sqltable/main.cpp b/examples/sql/sqltable/main.cpp index 29cebe51b..f1cb6bd67 100644 --- a/examples/sql/sqltable/main.cpp +++ b/examples/sql/sqltable/main.cpp @@ -61,7 +61,7 @@ int main( int argc, char ** argv ) TQDataTable table( &cursor ); /* data table uses our cursor */ table.addColumn( "name", "Name" ); table.addColumn( "address", "Address" ); - table.setSorting( TRUE ); + table.setSorting( true ); a.setMainWidget( &table ); table.refresh(); /* load data */ -- cgit v1.2.3