qtmobility/src/contacts/requests/qcontactrequests_p.h
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 5 453da2cfceef
--- a/qtmobility/src/contacts/requests/qcontactrequests_p.h	Fri Apr 16 15:51:22 2010 +0300
+++ b/qtmobility/src/contacts/requests/qcontactrequests_p.h	Mon May 03 13:18:40 2010 +0300
@@ -105,7 +105,7 @@
 
     QContactFilter m_filter;
     QList<QContactSortOrder> m_sorting;
-    QStringList m_definitionRestrictions;
+    QContactFetchHint m_fetchHint;
 
     QList<QContact> m_contacts;
 };
@@ -127,8 +127,6 @@
         return QContactAbstractRequest::ContactRemoveRequest;
     }
 
-    QContactFilter m_filter;    // deprecated, to be removed
-
     QList<QContactLocalId> m_contactIds;
     QMap<int, QContactManager::Error> m_errors;
 };
@@ -227,8 +225,7 @@
 {
 public:
     QContactRelationshipFetchRequestPrivate()
-        : QContactAbstractRequestPrivate(),
-        m_role(QContactRelationshipFilter::Either) // deprecated
+        : QContactAbstractRequestPrivate()
     {
     }
 
@@ -248,9 +245,6 @@
 
     // results
     QList<QContactRelationship> m_relationships;
-
-    QContactId m_participantUri; // deprecated
-    QContactRelationshipFilter::Role m_role; // deprecated
 };
 
 class QContactRelationshipSaveRequestPrivate : public QContactAbstractRequestPrivate
@@ -291,10 +285,6 @@
         return QContactAbstractRequest::RelationshipRemoveRequest;
     }
 
-    QContactId m_first;         // deprecated, to be removed
-    QContactId m_second;        // deprecated, to be removed
-    QString m_relationshipType; // deprecated, to be removed
-
     QList<QContactRelationship> m_relationships;
     QMap<int, QContactManager::Error> m_errors;
 };