qtmobility/src/contacts/qcontactdetailfielddefinition.cpp
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 11 06b8e2af4411
--- a/qtmobility/src/contacts/qcontactdetailfielddefinition.cpp	Fri Apr 16 15:51:22 2010 +0300
+++ b/qtmobility/src/contacts/qcontactdetailfielddefinition.cpp	Mon May 03 13:18:40 2010 +0300
@@ -53,20 +53,6 @@
  */
 
 /*!
- * \enum QContactDetailFieldDefinition::AccessConstraint
- *
- * \obsolete
- *
- * This enum defines the access constraints which may be set on fields of a detail definition in the store for which the definition is valid.
- * The constraint which applies to the definition takes precedence over a constraint which applies to a field of that definition.
- * For example, if a field has the \c QContactDetailFieldDefinition::NoConstraint constraint, but the detail definition from which the field came has
- * either the \c QContactDetailDefinition::ReadOnly or \c QContactDetailDefinition::CreateOnly constraint, then the field will be a read-only field.
- *
- * \value NoConstraint Fields with this access constraint set have no special access semantics associated with them.  Users can read, write, and otherwise modify such fields in any manner.
- * \value ReadOnly Fields with this access constraint set are dynamically modified by the backend.  Users cannot write values to fields of details of definitions with this access constraint set.
- */
-
-/*!
  * Constructs a new field with no constraints and an invalid data type.
  */
 QContactDetailFieldDefinition::QContactDetailFieldDefinition()
@@ -131,29 +117,6 @@
 }
 
 /*!
- * Returns the access constraints which apply to this field
- *
- * \obsolete
- * Obsolete - use \l QContactDetail::accessConstraints() instead.
- */
-QContactDetailFieldDefinition::AccessConstraint QContactDetailFieldDefinition::accessConstraint() const
-{
-    return QContactDetailFieldDefinition::NoConstraint;
-}
-
-/*!
- * Sets the access constraints which apply to this field to \a constraint
- *
- * \obsolete
- *
- * This is no longer used.
- */
-void QContactDetailFieldDefinition::setAccessConstraint(QContactDetailFieldDefinition::AccessConstraint constraint)
-{
-    Q_UNUSED(constraint);
-}
-
-/*!
  * Returns true if the allowable values and data type of the \a other field are equal to those of this field
  */
 bool QContactDetailFieldDefinition::operator==(const QContactDetailFieldDefinition& other) const