diff options
Diffstat (limited to 'doc/html/regexptester-example.html')
-rw-r--r-- | doc/html/regexptester-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/regexptester-example.html b/doc/html/regexptester-example.html index 4e16660b3..8afc5d77f 100644 --- a/doc/html/regexptester-example.html +++ b/doc/html/regexptester-example.html @@ -75,7 +75,7 @@ public: <a href="qtable.html">TQTable</a> *resultTable; <a href="qpushbutton.html">TQPushButton</a> *executePushButton; <a href="qpushbutton.html">TQPushButton</a> *copyPushButton; - <a href="qpushbutton.html">TQPushButton</a> *tquitPushButton; + <a href="qpushbutton.html">TQPushButton</a> *quitPushButton; <a href="qstatusbar.html">TQStatusBar</a> *statusBar; public slots: @@ -132,7 +132,7 @@ private: executePushButton = new <a href="qpushbutton.html">TQPushButton</a>(this); <a name="x2484"></a> executePushButton-><a href="qpushbutton.html#setDefault">setDefault</a>(true); copyPushButton = new <a href="qpushbutton.html">TQPushButton</a>(this); - tquitPushButton = new <a href="qpushbutton.html">TQPushButton</a>(this); + quitPushButton = new <a href="qpushbutton.html">TQPushButton</a>(this); statusBar = new <a href="qstatusbar.html">TQStatusBar</a>(this); <a href="qgridlayout.html">TQGridLayout</a> *gridLayout = new <a href="qgridlayout.html">TQGridLayout</a>(2, 2, 6); @@ -148,7 +148,7 @@ private: <a href="qvboxlayout.html">TQVBoxLayout</a> *buttonLayout = new <a href="qvboxlayout.html">TQVBoxLayout</a>(0, 6, 6); buttonLayout-><a href="qboxlayout.html#addWidget">addWidget</a>(executePushButton); buttonLayout-><a href="qboxlayout.html#addWidget">addWidget</a>(copyPushButton); - buttonLayout-><a href="qboxlayout.html#addWidget">addWidget</a>(tquitPushButton); + buttonLayout-><a href="qboxlayout.html#addWidget">addWidget</a>(quitPushButton); buttonLayout-><a href="qboxlayout.html#addStretch">addStretch</a>(1); <a href="qhboxlayout.html">TQHBoxLayout</a> *middleLayout = new <a href="qhboxlayout.html">TQHBoxLayout</a>(0, 6, 6); middleLayout-><a href="qboxlayout.html#addWidget">addWidget</a>(resultTable); @@ -165,7 +165,7 @@ private: <a href="qobject.html#connect">connect</a>(copyPushButton, SIGNAL(<a href="qbutton.html#clicked">clicked</a>()), this, SLOT(copy())); <a href="qobject.html#connect">connect</a>(executePushButton, SIGNAL(<a href="qbutton.html#clicked">clicked</a>()), this, SLOT(execute())); - <a href="qobject.html#connect">connect</a>(tquitPushButton, SIGNAL(<a href="qbutton.html#clicked">clicked</a>()), this, SLOT(<a href="qdialog.html#accept">accept</a>())); + <a href="qobject.html#connect">connect</a>(quitPushButton, SIGNAL(<a href="qbutton.html#clicked">clicked</a>()), this, SLOT(<a href="qdialog.html#accept">accept</a>())); execute(); } @@ -267,7 +267,7 @@ void <a name="f559"></a>RegexpTester::languageChange() wildcardCheckBox-><a href="qbutton.html#setText">setText</a>(<a href="qobject.html#tr">tr</a>("&Wildcard")); copyPushButton-><a href="qbutton.html#setText">setText</a>(<a href="qobject.html#tr">tr</a>("&Copy")); executePushButton-><a href="qbutton.html#setText">setText</a>(<a href="qobject.html#tr">tr</a>("&Execute")); - tquitPushButton-><a href="qbutton.html#setText">setText</a>(<a href="qobject.html#tr">tr</a>("&Quit")); + quitPushButton-><a href="qbutton.html#setText">setText</a>(<a href="qobject.html#tr">tr</a>("&Quit")); } </pre> @@ -282,7 +282,7 @@ int main(int argc, char **argv) <a href="qapplication.html">TQApplication</a> app(argc, argv); RegexpTester form; <a name="x2511"></a> form.<a href="qdialog.html#show">show</a>(); -<a name="x2512"></a><a name="x2510"></a><a name="x2509"></a> app.<a href="qobject.html#connect">connect</a>(&app, SIGNAL(<a href="qapplication.html#lastWindowClosed">lastWindowClosed</a>()), &app, SLOT(<a href="qapplication.html#tquit">tquit</a>())); +<a name="x2512"></a><a name="x2510"></a><a name="x2509"></a> app.<a href="qobject.html#connect">connect</a>(&app, SIGNAL(<a href="qapplication.html#lastWindowClosed">lastWindowClosed</a>()), &app, SLOT(<a href="qapplication.html#quit">quit</a>())); return app.<a href="qapplication.html#exec">exec</a>(); } </pre> |