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/toplevel-example.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/toplevel-example.html') diff --git a/doc/html/toplevel-example.html b/doc/html/toplevel-example.html index ab5d266c6..610c59d5c 100644 --- a/doc/html/toplevel-example.html +++ b/doc/html/toplevel-example.html @@ -194,7 +194,7 @@ closed (since we use the WDestructiveClose flag). Note that the window is not visible yet. (2)

        } else {
-            widget->reparent( parent, f, widget->geometry().topLeft(), FALSE);
+            widget->reparent( parent, f, widget->geometry().topLeft(), false);
         }
 
If the widget has already been created the reparent() function is used to modify the widget's flags. The widget's geometry is not -- cgit v1.2.3