summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qmetaobjectbuilder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/kernel/qmetaobjectbuilder.cpp')
-rw-r--r--src/corelib/kernel/qmetaobjectbuilder.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/corelib/kernel/qmetaobjectbuilder.cpp b/src/corelib/kernel/qmetaobjectbuilder.cpp
index ac57454169..4518d702cd 100644
--- a/src/corelib/kernel/qmetaobjectbuilder.cpp
+++ b/src/corelib/kernel/qmetaobjectbuilder.cpp
@@ -2144,7 +2144,7 @@ QByteArray QMetaPropertyBuilder::type() const
}
/*!
- Returns true if this property has a notify signal; false otherwise.
+ Returns \c true if this property has a notify signal; false otherwise.
\sa notifySignal(), setNotifySignal(), removeNotifySignal()
*/
@@ -2205,7 +2205,7 @@ void QMetaPropertyBuilder::removeNotifySignal()
}
/*!
- Returns true if this property is readable; otherwise returns false.
+ Returns \c true if this property is readable; otherwise returns \c false.
The default value is true.
\sa setReadable(), isWritable()
@@ -2220,7 +2220,7 @@ bool QMetaPropertyBuilder::isReadable() const
}
/*!
- Returns true if this property is writable; otherwise returns false.
+ Returns \c true if this property is writable; otherwise returns \c false.
The default value is true.
\sa setWritable(), isReadable()
@@ -2235,8 +2235,8 @@ bool QMetaPropertyBuilder::isWritable() const
}
/*!
- Returns true if this property can be reset to a default value; otherwise
- returns false. The default value is false.
+ Returns \c true if this property can be reset to a default value; otherwise
+ returns \c false. The default value is false.
\sa setResettable()
*/
@@ -2250,7 +2250,7 @@ bool QMetaPropertyBuilder::isResettable() const
}
/*!
- Returns true if this property is designable; otherwise returns false.
+ Returns \c true if this property is designable; otherwise returns \c false.
This default value is false.
\sa setDesignable(), isScriptable(), isStored()
@@ -2265,7 +2265,7 @@ bool QMetaPropertyBuilder::isDesignable() const
}
/*!
- Returns true if the property is scriptable; otherwise returns false.
+ Returns \c true if the property is scriptable; otherwise returns \c false.
This default value is true.
\sa setScriptable(), isDesignable(), isStored()
@@ -2280,7 +2280,7 @@ bool QMetaPropertyBuilder::isScriptable() const
}
/*!
- Returns true if the property is stored; otherwise returns false.
+ Returns \c true if the property is stored; otherwise returns \c false.
This default value is false.
\sa setStored(), isDesignable(), isScriptable()
@@ -2295,7 +2295,7 @@ bool QMetaPropertyBuilder::isStored() const
}
/*!
- Returns true if the property is editable; otherwise returns false.
+ Returns \c true if the property is editable; otherwise returns \c false.
This default value is false.
\sa setEditable(), isDesignable(), isScriptable(), isStored()
@@ -2310,7 +2310,7 @@ bool QMetaPropertyBuilder::isEditable() const
}
/*!
- Returns true if this property is designated as the \c USER
+ Returns \c true if this property is designated as the \c USER
property, i.e., the one that the user can edit or that is
significant in some other way. Otherwise it returns
false. This default value is false.
@@ -2327,7 +2327,7 @@ bool QMetaPropertyBuilder::isUser() const
}
/*!
- Returns true if the property has a C++ setter function that
+ Returns \c true if the property has a C++ setter function that
follows Qt's standard "name" / "setName" pattern. Designer and uic
query hasStdCppSet() in order to avoid expensive
QObject::setProperty() calls. All properties in Qt [should] follow
@@ -2345,8 +2345,8 @@ bool QMetaPropertyBuilder::hasStdCppSet() const
}
/*!
- Returns true if the property is an enumerator or flag type;
- otherwise returns false. This default value is false.
+ Returns \c true if the property is an enumerator or flag type;
+ otherwise returns \c false. This default value is false.
\sa setEnumOrFlag()
*/
@@ -2360,7 +2360,7 @@ bool QMetaPropertyBuilder::isEnumOrFlag() const
}
/*!
- Returns true if the property is constant; otherwise returns false.
+ Returns \c true if the property is constant; otherwise returns \c false.
The default value is false.
*/
bool QMetaPropertyBuilder::isConstant() const
@@ -2373,7 +2373,7 @@ bool QMetaPropertyBuilder::isConstant() const
}
/*!
- Returns true if the property is final; otherwise returns false.
+ Returns \c true if the property is final; otherwise returns \c false.
The default value is false.
*/
bool QMetaPropertyBuilder::isFinal() const
@@ -2600,7 +2600,7 @@ QByteArray QMetaEnumBuilder::name() const
}
/*!
- Returns true if this enumerator is used as a flag; otherwise returns
+ Returns \c true if this enumerator is used as a flag; otherwise returns
false.
\sa setIsFlag()