diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/threads.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/threads.html')
-rw-r--r-- | doc/html/threads.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/threads.html b/doc/html/threads.html index 337eef330..392d1c49c 100644 --- a/doc/html/threads.html +++ b/doc/html/threads.html @@ -207,7 +207,7 @@ apply when creating and using TQObjects in a thread that is not the GUI 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="ntqwidget.html">TQWidget</a> and +<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="ntqtimer.html">TQTimer</a>), and all networking classes (e.g. <a href="ntqsocket.html">TQSocket</a>, <a href="ntqdns.html">TQDns</a>). <p> <li> TQObject and all of its subclasses are <em>not</em> <em>thread-safe</em>. This @@ -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="ntqwidget.html">TQWidget</a>, <a href="ntqtimer.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="ntqtimer.html">TQTimer</a>, <a href="ntqsocketnotifier.html">TQSocketNotifier</a>, <a href="ntqsocket.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. @@ -296,7 +296,7 @@ Consult the manual of your database client for more information. <a name="11"></a><p> Some things to watch out for when programming with threads: <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="ntqwidget.html">TQWidget</a> and +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>). <p> <li> Deleting a TQObject while pending events are waiting to be delivered |