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/cursor-example.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/cursor-example.html') diff --git a/doc/html/cursor-example.html b/doc/html/cursor-example.html index 17044d4eb..97778cbe6 100644 --- a/doc/html/cursor-example.html +++ b/doc/html/cursor-example.html @@ -156,8 +156,8 @@ CursorView::CursorView() // construct view - TQBitmap cb( cb_width, cb_height, cb_bits, TRUE ); - TQBitmap cm( cm_width, cm_height, cm_bits, TRUE ); + TQBitmap cb( cb_width, cb_height, cb_bits, true ); + TQBitmap cm( cm_width, cm_height, cm_bits, true ); TQCursor custom( cb, cm ); // create bitmap cursor label = new TQLabel( this ); // create the big label -- cgit v1.2.3