summaryrefslogtreecommitdiffstats
path: root/doc/object.doc
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-06-05 19:02:23 +0900
committerMichele Calgaro <[email protected]>2024-06-05 19:02:23 +0900
commit1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (patch)
treed62f4174c0e58e1aa895fc71484d068b614cd6de /doc/object.doc
parent8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (diff)
downloadtqt3-1f0ce8533cc837aa2d4155b5fc17d2004bed0197.tar.gz
tqt3-1f0ce8533cc837aa2d4155b5fc17d2004bed0197.zip
Rename template library nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/object.doc')
-rw-r--r--doc/object.doc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/object.doc b/doc/object.doc
index 175e9bc92..381f96030 100644
--- a/doc/object.doc
+++ b/doc/object.doc
@@ -323,16 +323,16 @@ the enumeration type \c Priority for the property, this type must be
registered with the property system as well.
There are two exceptions to the above: The type of a property can also
-be either \link QValueList QValueList\<QVariant\>\endlink or \link
-QMap QMap\<TQString,QVariant\>\endlink. In
-these cases the type must be specified as \c QValueList or as \c QMap
+be either \link TQValueList TQValueList\<QVariant\>\endlink or \link
+TQMap TQMap\<TQString,QVariant\>\endlink. In
+these cases the type must be specified as \c TQValueList or as \c TQMap
(i.e. without their template parameters).
It is possible to set a value by name, like this:
\code
obj->setProperty( "priority", "VeryHigh" );
\endcode
-In the case of \c QValueList and \c QMap properties the value passes
+In the case of \c TQValueList and \c TQMap properties the value passes
is a QVariant whose value is the entire list or map.
Enumeration types are registered with the \c TQ_ENUMS macro. Here's the