summaryrefslogtreecommitdiffstats
path: root/doc/html/threads.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/threads.html')
-rw-r--r--doc/html/threads.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/threads.html b/doc/html/threads.html
index 63fb70c28..febd6d2c3 100644
--- a/doc/html/threads.html
+++ b/doc/html/threads.html
@@ -208,8 +208,8 @@ thread.
<p> <ol type=1>
<p> <li> <em>None</em> of the TQObject based classes included in the TQt library are
<em>reentrant</em>. This includes all widgets (e.g. <a href="tqwidget.html">TQWidget</a> and
-subclasses), OS kernel classes (e.g. <a href="ntqprocess.html">TQProcess</a>, <a href="ntqaccel.html">TQAccel</a>, <a href="tqtimer.html">TQTimer</a>), and
-all networking classes (e.g. <a href="ntqsocket.html">TQSocket</a>, <a href="ntqdns.html">TQDns</a>).
+subclasses), OS kernel classes (e.g. <a href="tqprocess.html">TQProcess</a>, <a href="ntqaccel.html">TQAccel</a>, <a href="tqtimer.html">TQTimer</a>), and
+all networking classes (e.g. <a href="tqsocket.html">TQSocket</a>, <a href="tqdns.html">TQDns</a>).
<p> <li> TQObject and all of its subclasses are <em>not</em> <em>thread-safe</em>. This
includes the entire event delivery system. It is important to
remember that the GUI thread may be delivering events to your TQObject
@@ -254,7 +254,7 @@ are examples of simple GUI operations:
<p> Any operations that generate events must not be called by any thread
other than the GUI thread. Examples of such operations are:
<p> <ul>
-<li> creating a <a href="tqwidget.html">TQWidget</a>, <a href="tqtimer.html">TQTimer</a>, <a href="ntqsocketnotifier.html">TQSocketNotifier</a>, <a href="ntqsocket.html">TQSocket</a> or other network class.
+<li> creating a <a href="tqwidget.html">TQWidget</a>, <a href="tqtimer.html">TQTimer</a>, <a href="tqsocketnotifier.html">TQSocketNotifier</a>, <a href="tqsocket.html">TQSocket</a> or other network class.
<li> moving, resizing, showing or hiding a TQWidget.
<li> starting or stoping a TQTimer.
<li> enabling or disabling a TQSocketNotifier.
@@ -297,8 +297,8 @@ Consult the manual of your database client for more information.
<p> <ul>
<p> <li> As mentioned above, <a href="tqobject.html">TQObject</a> based classes are neither thread-safe
nor reentrant. This includes all widgets (e.g. <a href="tqwidget.html">TQWidget</a> and
-subclasses), OS kernel classes (e.g. <a href="ntqprocess.html">TQProcess</a>, <a href="ntqaccel.html">TQAccel</a>), and all
-networking classes (e.g. <a href="ntqsocket.html">TQSocket</a>, <a href="ntqdns.html">TQDns</a>).
+subclasses), OS kernel classes (e.g. <a href="tqprocess.html">TQProcess</a>, <a href="ntqaccel.html">TQAccel</a>), and all
+networking classes (e.g. <a href="tqsocket.html">TQSocket</a>, <a href="tqdns.html">TQDns</a>).
<p> <li> Deleting a TQObject while pending events are waiting to be delivered
will cause a crash. If you are creating TQObjects in a thread that is
not the GUI thread and posting events to these objects, you should not