From 81ade129093a279e6537db25710583fd2bba9427 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 (cherry picked from commit c03a4800879ab62692e017e01c825ba12a421ad0) --- examples/hello/hello.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/hello/hello.cpp') diff --git a/examples/hello/hello.cpp b/examples/hello/hello.cpp index a1f5f9edb..d2079b2ca 100644 --- a/examples/hello/hello.cpp +++ b/examples/hello/hello.cpp @@ -36,7 +36,7 @@ Hello::Hello( const char *text, TQWidget *parent, const char *name ) void Hello::animate() { b = (b + 1) & 15; - repaint( FALSE ); + repaint( false ); } -- cgit v1.2.3