summaryrefslogtreecommitdiffstats
path: root/doc/html/properties.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/properties.html')
-rw-r--r--doc/html/properties.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/properties.html b/doc/html/properties.html
index cc7fcb559..aee2a5ba5 100644
--- a/doc/html/properties.html
+++ b/doc/html/properties.html
@@ -117,15 +117,15 @@ enumeration type declared in the class itself. Since <tt>MyClass</tt> uses
the enumeration type <tt>Priority</tt> for the property, this type must be
registered with the property system as well.
<p> There are two exceptions to the above: The type of a property can also
-be either <a href="ntqvaluelist.html">TQValueList&lt;TQVariant&gt;</a> or <a href="ntqmap.html">TQMap&lt;TQString,TQVariant&gt;</a>. In
-these cases the type must be specified as <a href="ntqvaluelist.html">TQValueList</a> or as <a href="ntqmap.html">TQMap</a>
+be either <a href="tqvaluelist.html">TQValueList&lt;TQVariant&gt;</a> or <a href="tqmap.html">TQMap&lt;TQString,TQVariant&gt;</a>. In
+these cases the type must be specified as <a href="tqvaluelist.html">TQValueList</a> or as <a href="tqmap.html">TQMap</a>
(i.e. without their template parameters).
<p> It is possible to set a value by name, like this:
<pre>
obj-&gt;setProperty( "priority", "VeryHigh" );
</pre>
-In the case of <a href="ntqvaluelist.html">TQValueList</a> and <a href="ntqmap.html">TQMap</a> properties the value passes
+In the case of <a href="tqvaluelist.html">TQValueList</a> and <a href="tqmap.html">TQMap</a> properties the value passes
is a <a href="ntqvariant.html">TQVariant</a> whose value is the entire list or map.
<p> Enumeration types are registered with the <tt>TQ_ENUMS</tt> macro. Here's the
final class declaration including the property related declarations: