diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/properties.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/properties.html')
-rw-r--r-- | doc/html/properties.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/properties.html b/doc/html/properties.html index d296b25ba..cc7fcb559 100644 --- a/doc/html/properties.html +++ b/doc/html/properties.html @@ -48,13 +48,13 @@ But properties have several features that distinguish them from ordinary data members: <p> <ul> <li> A read function. This always exists. -<p> <li> A write function. This is optional: read-only properties like <a href="ntqwidget.html#isDesktop">TQWidget::isDesktop</a>() do not have one. +<p> <li> A write function. This is optional: read-only properties like <a href="tqwidget.html#isDesktop">TQWidget::isDesktop</a>() do not have one. <p> <li> An attribute "stored" that indicates persistence. Most properties -are stored, but a few virtual properties are not. For example, <a href="ntqwidget.html#minimumWidth">TQWidget::minimumWidth</a>() isn't stored, since it's just a view of -<a href="ntqwidget.html#minimumSize">TQWidget::minimumSize</a>(), and has no data of its own. +are stored, but a few virtual properties are not. For example, <a href="tqwidget.html#minimumWidth">TQWidget::minimumWidth</a>() isn't stored, since it's just a view of +<a href="tqwidget.html#minimumSize">TQWidget::minimumSize</a>(), and has no data of its own. <p> <li> A reset function to set a property back to its context specific -default value. This is very rare, but for example, <a href="ntqwidget.html#font">TQWidget::font</a>() -needs this, since no call to <a href="ntqwidget.html#setFont">TQWidget::setFont</a>() can mean 'reset to +default value. This is very rare, but for example, <a href="tqwidget.html#font">TQWidget::font</a>() +needs this, since no call to <a href="tqwidget.html#setFont">TQWidget::setFont</a>() can mean 'reset to the context specific font'. <p> <li> An attribute "designable" that indicates whether it makes sense to make the property available in a GUI builder (e.g. <a href="designer-manual.html">TQt Designer</a>). For most properties this @@ -179,7 +179,7 @@ through the meta object, see <a href="ntqmetaobject.html#classInfo">TQMetaObject </h2> <a name="1"></a><p> When you inherit a <a href="tqobject.html">TQObject</a> subclass you may wish to override some aspects of some of the class's properties. -<p> For example, in <a href="ntqwidget.html">TQWidget</a> we have the autoMask property defined like +<p> For example, in <a href="tqwidget.html">TQWidget</a> we have the autoMask property defined like this: <pre> TQ_PROPERTY( bool autoMask READ autoMask WRITE setAutoMask DESIGNABLE false SCRIPTABLE false ) |