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/rot-example.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/rot-example.html') diff --git a/doc/html/rot-example.html b/doc/html/rot-example.html index 77227cde3..a629b19e7 100644 --- a/doc/html/rot-example.html +++ b/doc/html/rot-example.html @@ -117,17 +117,17 @@ private: void Rot13::changeLeft() { - left->blockSignals( TRUE ); + left->blockSignals( true ); left->setText( rot13( right->text() ) ); - left->blockSignals( FALSE ); + left->blockSignals( false ); } void Rot13::changeRight() { - right->blockSignals( TRUE ); + right->blockSignals( true ); right->setText( rot13( left->text() ) ); - right->blockSignals( FALSE ); + right->blockSignals( false ); } -- cgit v1.2.3