summaryrefslogtreecommitdiffstats
path: root/doc/html/distributor-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/distributor-example.html')
-rw-r--r--doc/html/distributor-example.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/distributor-example.html b/doc/html/distributor-example.html
index 090dec2fb..09b89cd1e 100644
--- a/doc/html/distributor-example.html
+++ b/doc/html/distributor-example.html
@@ -61,7 +61,7 @@ distributed with TQt.
** place of a destructor.
*****************************************************************************/
-#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="tqapplication-h.html">tqapplication.h</a>&gt;
#include &lt;<a href="tqcursor-h.html">tqcursor.h</a>&gt;
#include &lt;<a href="tqeventloop-h.html">tqeventloop.h</a>&gt;
#include &lt;<a href="tqfile-h.html">tqfile.h</a>&gt;
@@ -213,14 +213,14 @@ void Distributor::checkLibData()
<a href="tqfile.html">TQFile</a> file( libFilename-&gt;text() );
<a name="x2659"></a> if ( file.<a href="tqfile.html#open">open</a>( <a href="tqfile.html#open">IO_ReadOnly</a> ) ) {
-<a name="x2653"></a> TQApplication::<a href="ntqapplication.html#setOverrideCursor">setOverrideCursor</a>( WaitCursor );
+<a name="x2653"></a> TQApplication::<a href="tqapplication.html#setOverrideCursor">setOverrideCursor</a>( WaitCursor );
// instead of reading in the entire file, do the search in chunks
char data[60000];
ulong offset = 0;
<a name="x2655"></a> while ( ! file.<a href="tqfile.html#atEnd">atEnd</a>() &amp;&amp; completed &lt; total_steps ) {
-<a name="x2651"></a> TQApplication::<a href="ntqapplication.html#eventLoop">eventLoop</a>()-&gt;processEvents( TQEventLoop::ExcludeUserInput );
+<a name="x2651"></a> TQApplication::<a href="tqapplication.html#eventLoop">eventLoop</a>()-&gt;processEvents( TQEventLoop::ExcludeUserInput );
<a name="x2667"></a> ulong len = file.<a href="tqiodevice.html#readBlock">readBlock</a>( data, sizeof(data) );
if ( len &lt; 267 ) {
@@ -259,7 +259,7 @@ void Distributor::checkLibData()
<a name="x2656"></a> file.<a href="tqfile.html#close">close</a>();
-<a name="x2652"></a> TQApplication::<a href="ntqapplication.html#restoreOverrideCursor">restoreOverrideCursor</a>();
+<a name="x2652"></a> TQApplication::<a href="tqapplication.html#restoreOverrideCursor">restoreOverrideCursor</a>();
}
if ( completed == total_steps ) {
@@ -366,14 +366,14 @@ void Distributor::accept()
<a href="tqfile.html">TQFile</a> file( libFilename-&gt;text() );
if ( file.<a href="tqfile.html#open">open</a>( <a href="tqfile.html#open">IO_ReadWrite</a> ) ) {
- TQApplication::<a href="ntqapplication.html#setOverrideCursor">setOverrideCursor</a>( WaitCursor );
+ TQApplication::<a href="tqapplication.html#setOverrideCursor">setOverrideCursor</a>( WaitCursor );
// instead of reading in the entire file, do the search in chunks
char data[60000];
ulong offset = 0;
while ( ! file.<a href="tqfile.html#atEnd">atEnd</a>() &amp;&amp; completed &lt; total_steps ) {
- TQApplication::<a href="ntqapplication.html#eventLoop">eventLoop</a>()-&gt;processEvents( TQEventLoop::ExcludeUserInput );
+ TQApplication::<a href="tqapplication.html#eventLoop">eventLoop</a>()-&gt;processEvents( TQEventLoop::ExcludeUserInput );
ulong len = file.<a href="tqiodevice.html#readBlock">readBlock</a>( data, sizeof(data) );
if ( len &lt; 267 ) {
@@ -420,7 +420,7 @@ void Distributor::accept()
file.<a href="tqfile.html#close">close</a>();
- TQApplication::<a href="ntqapplication.html#restoreOverrideCursor">restoreOverrideCursor</a>();
+ TQApplication::<a href="tqapplication.html#restoreOverrideCursor">restoreOverrideCursor</a>();
}
if ( completed != total_steps ) {