summaryrefslogtreecommitdiffstats
path: root/doc/html/qmutexlocker.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
commitea318d1431c89e647598c510c4245c6571aa5f46 (patch)
tree996d29b80c30d453dda86d1a23162d441628f169 /doc/html/qmutexlocker.html
parentaaf89d4b48f69c9293feb187db26362e550b5561 (diff)
downloadtqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz
tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/html/qmutexlocker.html')
-rw-r--r--doc/html/qmutexlocker.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/qmutexlocker.html b/doc/html/qmutexlocker.html
index 4c550c4e0..d14309c36 100644
--- a/doc/html/qmutexlocker.html
+++ b/doc/html/qmutexlocker.html
@@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>The TQMutexLocker class simplifies locking and unlocking TQMutexes.
<a href="#details">More...</a>
<p>All the functions in this class are <a href="threads.html#threadsafe">thread-safe</a> when TQt is built with thread support.</p>
-<p><tt>#include &lt;<a href="qmutex-h.html">qmutex.h</a>&gt;</tt>
+<p><tt>#include &lt;<a href="qmutex-h.html">ntqmutex.h</a>&gt;</tt>
<p><a href="qmutexlocker-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@@ -49,7 +49,7 @@ The TQMutexLocker class simplifies locking and unlocking TQMutexes.
<p>
<p>
-<p> The purpose of TQMutexLocker is to simplify <a href="qmutex.html">TQMutex</a> locking and
+<p> The purpose of TQMutexLocker is to simplify <a href="ntqmutex.html">TQMutex</a> locking and
unlocking. Locking and unlocking a TQMutex in complex functions and
statements or in exception handling code is error prone and
difficult to debug. TQMutexLocker should be used in such situations
@@ -153,7 +153,7 @@ exception is passed up the stack to the calling function.
<p> TQMutexLocker also provides a <a href="#mutex">mutex</a>() member function that returns
the mutex on which the TQMutexLocker is operating. This is useful
for code that needs access to the mutex, such as
-<a href="qwaitcondition.html#wait">TQWaitCondition::wait</a>(). For example:
+<a href="ntqwaitcondition.html#wait">TQWaitCondition::wait</a>(). For example:
<p> <pre>
class SignalWaiter
{
@@ -161,7 +161,7 @@ for code that needs access to the mutex, such as
TQMutexLocker locker;
public:
- SignalWaiter( <a href="qmutex.html">TQMutex</a> *mutex )
+ SignalWaiter( <a href="ntqmutex.html">TQMutex</a> *mutex )
: locker( mutex )
{
}
@@ -182,25 +182,25 @@ for code that needs access to the mutex, such as
};
</pre>
-<p> <p>See also <a href="qmutex.html">TQMutex</a>, <a href="qwaitcondition.html">TQWaitCondition</a>, <a href="environment.html">Environment Classes</a>, and <a href="thread.html">Threading</a>.
+<p> <p>See also <a href="ntqmutex.html">TQMutex</a>, <a href="ntqwaitcondition.html">TQWaitCondition</a>, <a href="environment.html">Environment Classes</a>, and <a href="thread.html">Threading</a>.
<hr><h2>Member Function Documentation</h2>
-<h3 class=fn><a name="TQMutexLocker"></a>TQMutexLocker::TQMutexLocker ( <a href="qmutex.html">TQMutex</a>&nbsp;*&nbsp;mutex )
+<h3 class=fn><a name="TQMutexLocker"></a>TQMutexLocker::TQMutexLocker ( <a href="ntqmutex.html">TQMutex</a>&nbsp;*&nbsp;mutex )
</h3>
<p> Constructs a TQMutexLocker and locks <em>mutex</em>. The mutex will be
unlocked when the TQMutexLocker is destroyed. If <em>mutex</em> is zero,
TQMutexLocker does nothing.
-<p> <p>See also <a href="qmutex.html#lock">TQMutex::lock</a>().
+<p> <p>See also <a href="ntqmutex.html#lock">TQMutex::lock</a>().
<h3 class=fn><a name="~TQMutexLocker"></a>TQMutexLocker::~TQMutexLocker ()
</h3>
<p> Destroys the TQMutexLocker and unlocks the mutex which was locked
in the constructor.
-<p> <p>See also <a href="#TQMutexLocker">TQMutexLocker::TQMutexLocker</a>() and <a href="qmutex.html#unlock">TQMutex::unlock</a>().
+<p> <p>See also <a href="#TQMutexLocker">TQMutexLocker::TQMutexLocker</a>() and <a href="ntqmutex.html#unlock">TQMutex::unlock</a>().
-<h3 class=fn><a href="qmutex.html">TQMutex</a>&nbsp;* <a name="mutex"></a>TQMutexLocker::mutex () const
+<h3 class=fn><a href="ntqmutex.html">TQMutex</a>&nbsp;* <a name="mutex"></a>TQMutexLocker::mutex () const
</h3>
<p> Returns a pointer to the mutex which was locked in the