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 1afbddefd..63e247b99 100644 --- a/doc/html/regexptester-example.html +++ b/doc/html/regexptester-example.html @@ -90,7 +90,7 @@ private: <p> <hr> <p> Implementation: -<p> <pre>#include <<a href="qapplication-h.html">ntqapplication.h</a>> +<p> <pre>#include <<a href="tqapplication-h.html">tqapplication.h</a>> #include <<a href="tqcheckbox-h.html">tqcheckbox.h</a>> #include <<a href="tqclipboard-h.html">tqclipboard.h</a>> #include <<a href="tqcombobox-h.html">tqcombobox.h</a>> @@ -245,7 +245,7 @@ void <a name="f558"></a>RegexpTester::copy() <a href="tqstring.html">TQString</a> escaped = regexComboBox-><a href="tqcombobox.html#currentText">currentText</a>(); if (!escaped.<a href="tqstring.html#isEmpty">isEmpty</a>()) { escaped = escaped.<a href="tqstring.html#replace">replace</a>("\\", "\\\\"); -<a name="x2468"></a> <a href="tqclipboard.html">TQClipboard</a> *cb = TQApplication::<a href="ntqapplication.html#clipboard">clipboard</a>(); +<a name="x2468"></a> <a href="tqclipboard.html">TQClipboard</a> *cb = TQApplication::<a href="tqapplication.html#clipboard">clipboard</a>(); <a name="x2476"></a> cb-><a href="tqclipboard.html#setText">setText</a>(escaped, TQClipboard::Clipboard); <a name="x2477"></a> if (cb-><a href="tqclipboard.html#supportsSelection">supportsSelection</a>()) cb-><a href="tqclipboard.html#setText">setText</a>(escaped, TQClipboard::Selection); @@ -273,16 +273,16 @@ void <a name="f559"></a>RegexpTester::languageChange() <p> <hr> <p> Main: -<p> <pre>#include <<a href="qapplication-h.html">ntqapplication.h</a>> +<p> <pre>#include <<a href="tqapplication-h.html">tqapplication.h</a>> #include "regexptester.h" int main(int argc, char **argv) { - <a href="ntqapplication.html">TQApplication</a> app(argc, argv); + <a href="tqapplication.html">TQApplication</a> app(argc, argv); RegexpTester form; <a name="x2511"></a> form.<a href="tqdialog.html#show">show</a>(); -<a name="x2512"></a><a name="x2510"></a><a name="x2509"></a> app.<a href="tqobject.html#connect">connect</a>(&app, TQ_SIGNAL(<a href="ntqapplication.html#lastWindowClosed">lastWindowClosed</a>()), &app, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>())); - return app.<a href="ntqapplication.html#exec">exec</a>(); +<a name="x2512"></a><a name="x2510"></a><a name="x2509"></a> app.<a href="tqobject.html#connect">connect</a>(&app, TQ_SIGNAL(<a href="tqapplication.html#lastWindowClosed">lastWindowClosed</a>()), &app, TQ_SLOT(<a href="tqapplication.html#quit">quit</a>())); + return app.<a href="tqapplication.html#exec">exec</a>(); } </pre> |