summaryrefslogtreecommitdiffstats
path: root/doc/html/simple-font-demo-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
commitdcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch)
treed57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/simple-font-demo-example.html
parent649c4c61a1f1f479f4532b196f68df476cef2680 (diff)
downloadtqt-rename/true-false-4.tar.gz
tqt-rename/true-false-4.zip
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/simple-font-demo-example.html')
-rw-r--r--doc/html/simple-font-demo-example.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/simple-font-demo-example.html b/doc/html/simple-font-demo-example.html
index 194dd96bb..59ba5677e 100644
--- a/doc/html/simple-font-demo-example.html
+++ b/doc/html/simple-font-demo-example.html
@@ -120,7 +120,7 @@ private:
italicsButton = new <a href="tqpushbutton.html">TQPushButton</a>( "Italics", this,
"pushbutton3" );
- italicsButton-&gt;<a href="tqwidget.html#setFont">setFont</a>( TQFont( "lucida", 12, TQFont::Bold, TRUE ) );
+ italicsButton-&gt;<a href="tqwidget.html#setFont">setFont</a>( TQFont( "lucida", 12, TQFont::Bold, true ) );
<a href="tqobject.html#connect">connect</a>( italicsButton, TQ_SIGNAL( <a href="tqbutton.html#clicked">clicked</a>() ),
this, TQ_SLOT( setItalics() ) );
@@ -133,7 +133,7 @@ void <a name="f591"></a>Viewer::setDefault()
<a name="x2843"></a> font.<a href="tqfont.html#setPointSize">setPointSize</a>( 24 );
<a name="x2846"></a> font.<a href="tqfont.html#setWeight">setWeight</a>( TQFont::Bold );
-<a name="x2845"></a> font.<a href="tqfont.html#setUnderline">setUnderline</a>( TRUE );
+<a name="x2845"></a> font.<a href="tqfont.html#setUnderline">setUnderline</a>( true );
greetings-&gt;<a href="tqwidget.html#setFont">setFont</a>( font );
@@ -154,7 +154,7 @@ void <a name="f593"></a>Viewer::setItalics()
<a href="tqfont.html">TQFont</a> font( "Tokyo" );
font.<a href="tqfont.html#setPointSize">setPointSize</a>( 32 );
font.<a href="tqfont.html#setWeight">setWeight</a>( TQFont::Bold );
-<a name="x2842"></a> font.<a href="tqfont.html#setItalic">setItalic</a>( TRUE );
+<a name="x2842"></a> font.<a href="tqfont.html#setItalic">setItalic</a>( true );
greetings-&gt;<a href="tqwidget.html#setFont">setFont</a>( font );