summaryrefslogtreecommitdiffstats
path: root/doc/html/simple-font-demo-example.html
diff options
context:
space:
mode:
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 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-&gt;<a href="ntqwidget.html#setFont">setFont</a>( TQFont( "lucida", 12, TQFont::Bold, TRUE ) );
+ italicsButton-&gt;<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-&gt;<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-&gt;<a href="ntqwidget.html#setFont">setFont</a>( font );