summaryrefslogtreecommitdiffstats
path: root/doc/html/archivesearch-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-15 13:05:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-22 10:05:58 +0900
commit397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch)
tree0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/archivesearch-example.html
parent755d46927cc6a5719e695aeb8133be6897de62d8 (diff)
downloadtqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.tar.gz
tqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.zip
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/archivesearch-example.html')
-rw-r--r--doc/html/archivesearch-example.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/archivesearch-example.html b/doc/html/archivesearch-example.html
index 91c263877..e4f792811 100644
--- a/doc/html/archivesearch-example.html
+++ b/doc/html/archivesearch-example.html
@@ -99,7 +99,7 @@ void ArchiveDialog::search()
"Please type a search string.",
TQMessageBox::Ok, TQMessageBox::NoButton);
} else {
-<a name="x474"></a> TQApplication::<a href="ntqapplication.html#setOverrideCursor">setOverrideCursor</a>(TQCursor(TQt::WaitCursor));
+<a name="x474"></a> TQApplication::<a href="tqapplication.html#setOverrideCursor">setOverrideCursor</a>(TQCursor(TQt::WaitCursor));
articleSearcher.setHost("lists.trolltech.com");
@@ -138,7 +138,7 @@ void ArchiveDialog::searchDone( bool error )
}
}
-<a name="x473"></a> TQApplication::<a href="ntqapplication.html#restoreOverrideCursor">restoreOverrideCursor</a>();
+<a name="x473"></a> TQApplication::<a href="tqapplication.html#restoreOverrideCursor">restoreOverrideCursor</a>();
}
</pre>
@@ -155,18 +155,18 @@ void ArchiveDialog::searchDone( bool error )
*****************************************************************************/
#include "archivedialog.h"
-#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="tqapplication-h.html">tqapplication.h</a>&gt;
int main(int argc, char **argv)
{
- <a href="ntqapplication.html">TQApplication</a> a( argc, argv );
+ <a href="tqapplication.html">TQApplication</a> a( argc, argv );
ArchiveDialog ad;
ad.show();
-<a name="x489"></a><a name="x487"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &amp;a, TQ_SIGNAL(<a href="ntqapplication.html#lastWindowClosed">lastWindowClosed</a>()),
-<a name="x488"></a> &amp;a, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
+<a name="x489"></a><a name="x487"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &amp;a, TQ_SIGNAL(<a href="tqapplication.html#lastWindowClosed">lastWindowClosed</a>()),
+<a name="x488"></a> &amp;a, TQ_SLOT(<a href="tqapplication.html#quit">quit</a>()) );
-<a name="x486"></a> return a.<a href="ntqapplication.html#exec">exec</a>();
+<a name="x486"></a> return a.<a href="tqapplication.html#exec">exec</a>();
}
</pre>