Changeset 62921 in webkit for trunk/JavaScriptCore/qt/api/qscriptvalue.cpp
- Timestamp:
- Jul 9, 2010, 2:19:34 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/qt/api/qscriptvalue.cpp
r62661 r62921 756 756 d_ptr->setProperty(QScriptStringPrivate::get(name).constData(), QScriptValuePrivate::get(value), flags); 757 757 } 758 759 /*! 760 Returns the flags of the property with the given \a name, using the 761 given \a mode to resolve the property. 762 763 \sa property() 764 */ 765 QScriptValue::PropertyFlags QScriptValue::propertyFlags(const QString& name, const ResolveFlags& mode) const 766 { 767 return d_ptr->propertyFlags(name, mode); 768 } 769 770 /*! 771 Returns the flags of the property with the given \a name, using the 772 given \a mode to resolve the property. 773 774 \sa property() 775 */ 776 QScriptValue::PropertyFlags QScriptValue::propertyFlags(const QScriptString& name, const ResolveFlags& mode) const 777 { 778 return d_ptr->propertyFlags(QScriptStringPrivate::get(name).constData(), mode); 779 }
Note:
See TracChangeset
for help on using the changeset viewer.