summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqguardedptr.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-23 14:04:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-27 16:08:54 +0900
commit04913ce7a46fd027856e83a96205fdc388742a19 (patch)
treea04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/ntqguardedptr.html
parentc11c0f228b65f7471a26513ef8dbde413e75f8fa (diff)
downloadtqt3-04913ce7a46fd027856e83a96205fdc388742a19.tar.gz
tqt3-04913ce7a46fd027856e83a96205fdc388742a19.zip
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqguardedptr.html')
-rw-r--r--doc/html/ntqguardedptr.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/ntqguardedptr.html b/doc/html/ntqguardedptr.html
index 691b1e36d..baf38a94c 100644
--- a/doc/html/ntqguardedptr.html
+++ b/doc/html/ntqguardedptr.html
@@ -60,7 +60,7 @@ The TQGuardedPtr class is a template class that provides guarded pointers to TQO
pointer <tt>X*</tt>, except that it is automatically set to 0 when
the referenced object is destroyed (unlike normal C++ pointers,
which become "dangling pointers" in such cases). <tt>X</tt> must be a
-subclass of <a href="ntqobject.html">TQObject</a>.
+subclass of <a href="tqobject.html">TQObject</a>.
<p> Guarded pointers are useful whenever you need to store a pointer
to a TQObject that is owned by someone else and therefore might be
destroyed while you still hold a reference to it. You can safely
@@ -97,7 +97,7 @@ requires a <a href="ntqwidget.html">TQWidget</a>*. For this reason, it is of lit
declare functions to take a TQGuardedPtr as a parameter; just use
normal pointers. Use a TQGuardedPtr when you are storing a pointer
over time.
-<p> Note again that class <em>X</em> must inherit <a href="ntqobject.html">TQObject</a>, or a compilation
+<p> Note again that class <em>X</em> must inherit <a href="tqobject.html">TQObject</a>, or a compilation
or link error will result.
<p>See also <a href="objectmodel.html">Object Model</a>.