diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-11 17:42:14 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-11 17:42:14 +0900 |
commit | 9492e618a7bcc0a58db039d6700b508dec2c9db3 (patch) | |
tree | d9e102d5ad79aaf0cb16c7c3644e38c9b7da6bc0 /doc/html | |
parent | 979f5621d7cb2015eef214b0258dac1d6cd4c742 (diff) | |
download | tqt3-9492e618a7bcc0a58db039d6700b508dec2c9db3.tar.gz tqt3-9492e618a7bcc0a58db039d6700b508dec2c9db3.zip |
Drop compatibility code for TQThread
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html')
-rw-r--r-- | doc/html/ntqthread.html | 5 | ||||
-rw-r--r-- | doc/html/porting.html | 1 | ||||
-rw-r--r-- | doc/html/qthread-h.html | 9 | ||||
-rw-r--r-- | doc/html/qthread-members.html | 1 |
4 files changed, 1 insertions, 15 deletions
diff --git a/doc/html/ntqthread.html b/doc/html/ntqthread.html index 8fc0e5660..edd77b60b 100644 --- a/doc/html/ntqthread.html +++ b/doc/html/ntqthread.html @@ -51,7 +51,6 @@ body { background: #ffffff; color: black; } <h2>Static Public Members</h2> <ul> <li class=fn>TQt::HANDLE <a href="#currentThread"><b>currentThread</b></a> ()</li> -<li class=fn>void postEvent ( TQObject * receiver, TQEvent * event ) <em>(obsolete)</em></li> <li class=fn>void <a href="#exit"><b>exit</b></a> ()</li> </ul> <h2>Protected Members</h2> @@ -173,10 +172,6 @@ Returns TRUE if the thread is finished; otherwise returns FALSE. System independent sleep. This causes the current thread to sleep for <em>msecs</em> milliseconds -<h3 class=fn>void <a name="postEvent"></a>TQThread::postEvent ( <a href="ntqobject.html">TQObject</a> * receiver, <a href="ntqevent.html">TQEvent</a> * event )<tt> [static]</tt> -</h3> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code. -<p> Use <a href="ntqapplication.html#postEvent">TQApplication::postEvent</a>() instead. - <h3 class=fn>void <a name="run"></a>TQThread::run ()<tt> [pure virtual protected]</tt> </h3> diff --git a/doc/html/porting.html b/doc/html/porting.html index 44202c104..574d8edf2 100644 --- a/doc/html/porting.html +++ b/doc/html/porting.html @@ -262,6 +262,7 @@ have been changed: <li> TQString::visual() <li> TQStyle::set...() functions <li> TQStyle::drawArrow() +<li> TQThread::postEvent(TQObject *receiver, TQEvent *event). Use TQApplication::postEvent instead. <li> TQToolButton::iconSet(bool on) const <li> TQToolButton::offIconSet() const <li> TQToolButton::onIconSet() const diff --git a/doc/html/qthread-h.html b/doc/html/qthread-h.html index 5a2e97a80..00fc81ffe 100644 --- a/doc/html/qthread-h.html +++ b/doc/html/qthread-h.html @@ -81,11 +81,6 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "ntqwindowdefs.h" -#ifndef TQT_NO_COMPAT -#include "ntqmutex.h" -#include "ntqsemaphore.h" -#include "ntqwaitcondition.h" -#endif // TQT_NO_COMPAT #endif // QT_H #include <limits.h> @@ -97,10 +92,6 @@ class Q_EXPORT TQThread : public TQt public: static TQt::HANDLE currentThread(); -#ifndef TQT_NO_COMPAT - static void postEvent( TQObject *,TQEvent * ); -#endif - static void initialize(); static void cleanup(); diff --git a/doc/html/qthread-members.html b/doc/html/qthread-members.html index 91a9ab4d3..3cbfa108f 100644 --- a/doc/html/qthread-members.html +++ b/doc/html/qthread-members.html @@ -41,7 +41,6 @@ body { background: #ffffff; color: black; } <li><a href="ntqthread.html#exit">exit</a>() <li><a href="ntqthread.html#finished">finished</a>() <li><a href="ntqthread.html#msleep">msleep</a>() -<li><a href="ntqthread.html#postEvent">postEvent</a>() <li><a href="ntqthread.html#run">run</a>() <li><a href="ntqthread.html#running">running</a>() <li><a href="ntqthread.html#sleep">sleep</a>() |