summaryrefslogtreecommitdiffstats
path: root/doc/html/richtext-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/richtext-example.html')
-rw-r--r--doc/html/richtext-example.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/richtext-example.html b/doc/html/richtext-example.html
index d4b346461..57aff5cf5 100644
--- a/doc/html/richtext-example.html
+++ b/doc/html/richtext-example.html
@@ -180,7 +180,7 @@ static const char* sayings[] = {
bPrev = new <a href="ntqpushbutton.html">TQPushButton</a>( "&lt;&lt; &amp;Prev", buttons );
bNext = new <a href="ntqpushbutton.html">TQPushButton</a>( "&amp;Next &gt;&gt;", buttons );
-<a name="x466"></a> bPrev-&gt;<a href="ntqwidget.html#setEnabled">setEnabled</a>( FALSE );
+<a name="x466"></a> bPrev-&gt;<a href="ntqwidget.html#setEnabled">setEnabled</a>( false );
<a name="x462"></a> <a href="ntqobject.html#connect">connect</a>( bClose, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), tqApp, TQ_SLOT( <a href="ntqapplication.html#quit">quit</a>() ) );
<a href="ntqobject.html#connect">connect</a>( bPrev, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( prev() ) );
@@ -199,9 +199,9 @@ void <a name="f256"></a>MyRichText::prev()
view-&gt;<a href="ntqtextedit.html#setText">setText</a>( sayings[num] );
if ( num == 0 )
- bPrev-&gt;<a href="ntqwidget.html#setEnabled">setEnabled</a>( FALSE );
+ bPrev-&gt;<a href="ntqwidget.html#setEnabled">setEnabled</a>( false );
- bNext-&gt;<a href="ntqwidget.html#setEnabled">setEnabled</a>( TRUE );
+ bNext-&gt;<a href="ntqwidget.html#setEnabled">setEnabled</a>( true );
}
void <a name="f257"></a>MyRichText::next()
@@ -212,9 +212,9 @@ void <a name="f257"></a>MyRichText::next()
view-&gt;<a href="ntqtextedit.html#setText">setText</a>( sayings[num] );
if ( !sayings[num + 1] )
- bNext-&gt;<a href="ntqwidget.html#setEnabled">setEnabled</a>( FALSE );
+ bNext-&gt;<a href="ntqwidget.html#setEnabled">setEnabled</a>( false );
- bPrev-&gt;<a href="ntqwidget.html#setEnabled">setEnabled</a>( TRUE );
+ bPrev-&gt;<a href="ntqwidget.html#setEnabled">setEnabled</a>( true );
}