From 4d495175043c399fdca6e1bb4c74ef176fc76fb4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 6 Aug 2025 11:29:57 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Signed-off-by: Michele Calgaro --- doc/html/tqsqlselectcursor.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/tqsqlselectcursor.html') diff --git a/doc/html/tqsqlselectcursor.html b/doc/html/tqsqlselectcursor.html index 34690d8ff..07a89ceee 100644 --- a/doc/html/tqsqlselectcursor.html +++ b/doc/html/tqsqlselectcursor.html @@ -60,7 +60,7 @@ support INSERT, UPDATE or DELETE operations. ... TQSqlSelectCursor* cur = new TQSqlSelectCursor( "SELECT id, firstname, lastname FROM author" ); TQDataTable* table = new TQDataTable( this ); - table->setSqlCursor( cur, TRUE, TRUE ); + table->setSqlCursor( cur, true, true ); table->refresh(); ... cur->exec( "SELECT * FROM books" ); -- cgit v1.2.3