summaryrefslogtreecommitdiffstats
path: root/doc/html/process-example.html
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-14 22:33:41 -0600
committerTimothy Pearson <[email protected]>2011-11-14 22:33:41 -0600
commit0f92dd542b65bc910caaf190b7c623aa5158c86a (patch)
tree120ab7e08fa0ffc354ef58d100f79a33c92aa6e6 /doc/html/process-example.html
parentd796c9dd933ab96ec83b9a634feedd5d32e1ba3f (diff)
downloadtqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.tar.gz
tqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.zip
Fix native TQt3 accidental conversion to tquit
Diffstat (limited to 'doc/html/process-example.html')
-rw-r--r--doc/html/process-example.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/process-example.html b/doc/html/process-example.html
index 839f185b3..565eab304 100644
--- a/doc/html/process-example.html
+++ b/doc/html/process-example.html
@@ -74,16 +74,16 @@ public slots:
private:
<a href="qprocess.html">TQProcess</a> *proc;
<a href="qtextview.html">TQTextView</a> *output;
- <a href="qpushbutton.html">TQPushButton</a> *tquitButton;
+ <a href="qpushbutton.html">TQPushButton</a> *quitButton;
};
<a name="f204"></a>UicManager::UicManager()
{
// Layout
output = new <a href="qtextview.html">TQTextView</a>( this );
- tquitButton = new <a href="qpushbutton.html">TQPushButton</a>( <a href="qobject.html#tr">tr</a>("Quit"), this );
- <a href="qobject.html#connect">connect</a>( tquitButton, SIGNAL(<a href="qbutton.html#clicked">clicked</a>()),
- qApp, SLOT(<a href="qapplication.html#tquit">tquit</a>()) );
+ quitButton = new <a href="qpushbutton.html">TQPushButton</a>( <a href="qobject.html#tr">tr</a>("Quit"), this );
+ <a href="qobject.html#connect">connect</a>( quitButton, SIGNAL(<a href="qbutton.html#clicked">clicked</a>()),
+ qApp, SLOT(<a href="qapplication.html#quit">quit</a>()) );
<a href="qwidget.html#resize">resize</a>( 500, 500 );
// TQProcess related code