summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-05.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-14 22:33:41 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-14 22:33:41 -0600
commit0f92dd542b65bc910caaf190b7c623aa5158c86a (patch)
tree120ab7e08fa0ffc354ef58d100f79a33c92aa6e6 /doc/html/tutorial1-05.html
parentd796c9dd933ab96ec83b9a634feedd5d32e1ba3f (diff)
downloadtqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.tar.gz
tqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.zip
Fix native TQt3 accidental conversion to tquit
Diffstat (limited to 'doc/html/tutorial1-05.html')
-rw-r--r--doc/html/tutorial1-05.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tutorial1-05.html b/doc/html/tutorial1-05.html
index 8aabed708..239448714 100644
--- a/doc/html/tutorial1-05.html
+++ b/doc/html/tutorial1-05.html
@@ -59,10 +59,10 @@ public:
<a name="f553"></a>MyWidget::MyWidget( <a href="qwidget.html">TQWidget</a> *parent, const char *name )
: <a href="qvbox.html">TQVBox</a>( parent, name )
{
- <a href="qpushbutton.html">TQPushButton</a> *tquit = new <a href="qpushbutton.html">TQPushButton</a>( "Quit", this, "tquit" );
- tquit-&gt;<a href="qwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
+ <a href="qpushbutton.html">TQPushButton</a> *quit = new <a href="qpushbutton.html">TQPushButton</a>( "Quit", this, "quit" );
+ quit-&gt;<a href="qwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
- <a href="qobject.html#connect">connect</a>( tquit, SIGNAL(<a href="qbutton.html#clicked">clicked</a>()), qApp, SLOT(<a href="qapplication.html#tquit">tquit</a>()) );
+ <a href="qobject.html#connect">connect</a>( quit, SIGNAL(<a href="qbutton.html#clicked">clicked</a>()), qApp, SLOT(<a href="qapplication.html#quit">quit</a>()) );
<a href="qlcdnumber.html">TQLCDNumber</a> *lcd = new <a href="qlcdnumber.html">TQLCDNumber</a>( 2, this, "lcd" );
@@ -152,7 +152,7 @@ makefile and build the application.)
buttons to set the number base.
<p> You can also change the slider's range.
<p> Perhaps it would have been better to use <a href="qspinbox.html">TQSpinBox</a> than a slider?
-<p> Try to make the application tquit when the LCD number overflows.
+<p> Try to make the application quit when the LCD number overflows.
<p> You're now ready for <a href="tutorial1-06.html">Chapter 6.</a>
<p> [<a href="tutorial1-04.html">Previous tutorial</a>]
[<a href="tutorial1-06.html">Next tutorial</a>]