diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-11-26 15:11:22 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-11-26 15:11:22 +0900 |
| commit | b87533f9904c10f24d6b2e8177c00944e3efe15b (patch) | |
| tree | c1106a381c851b51e86004698457aef1211b77be /doc/html/simple-font-demo-example.html | |
| parent | 894037c3e68e1573a34183d936171f8cda5085f3 (diff) | |
| download | tqt-r14.1.x.tar.gz tqt-r14.1.x.zip | |
Replace TRUE/FALSE with boolean values true/false - part 4r14.1.x
Manually cherry-picked from commit 4d495175
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.html | 6 |
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 29f414131..25b6b5552 100644 --- a/doc/html/simple-font-demo-example.html +++ b/doc/html/simple-font-demo-example.html @@ -121,7 +121,7 @@ private: italicsButton = new <a href="ntqpushbutton.html">TQPushButton</a>( "Italics", this, "pushbutton3" ); - italicsButton-><a href="ntqwidget.html#setFont">setFont</a>( TQFont( "lucida", 12, TQFont::Bold, TRUE ) ); + italicsButton-><a href="ntqwidget.html#setFont">setFont</a>( TQFont( "lucida", 12, TQFont::Bold, true ) ); <a href="ntqobject.html#connect">connect</a>( italicsButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( setItalics() ) ); @@ -134,7 +134,7 @@ void <a name="f591"></a>Viewer::setDefault() <a name="x2843"></a> font.<a href="ntqfont.html#setPointSize">setPointSize</a>( 24 ); <a name="x2846"></a> font.<a href="ntqfont.html#setWeight">setWeight</a>( TQFont::Bold ); -<a name="x2845"></a> font.<a href="ntqfont.html#setUnderline">setUnderline</a>( TRUE ); +<a name="x2845"></a> font.<a href="ntqfont.html#setUnderline">setUnderline</a>( true ); greetings-><a href="ntqwidget.html#setFont">setFont</a>( font ); @@ -155,7 +155,7 @@ void <a name="f593"></a>Viewer::setItalics() <a href="ntqfont.html">TQFont</a> font( "Tokyo" ); font.<a href="ntqfont.html#setPointSize">setPointSize</a>( 32 ); font.<a href="ntqfont.html#setWeight">setWeight</a>( TQFont::Bold ); -<a name="x2842"></a> font.<a href="ntqfont.html#setItalic">setItalic</a>( TRUE ); +<a name="x2842"></a> font.<a href="ntqfont.html#setItalic">setItalic</a>( true ); greetings-><a href="ntqwidget.html#setFont">setFont</a>( font ); |
