qtmobility/src/contacts/requests/qcontactremoverequest.h
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 5 453da2cfceef
equal deleted inserted replaced
1:2b40d63a9c3d 4:90517678cc4f
    55 {
    55 {
    56     Q_OBJECT
    56     Q_OBJECT
    57 
    57 
    58 public:
    58 public:
    59     QContactRemoveRequest();
    59     QContactRemoveRequest();
    60     ~QContactRemoveRequest();
       
    61 
    60 
    62     /* Selection */
    61     /* Selection */
    63     void Q_DECL_DEPRECATED setFilter(const QContactFilter& filter); // deprecated, replaced by explicit list of contacts to remove
    62     void setContactIds(const QList<QContactLocalId>& contactIds);
    64     QContactFilter Q_DECL_DEPRECATED filter() const;                // deprecated, replaced by explicit list of contacts to remove
       
    65 
       
    66     void setContactIds(const QList<QContactLocalId>& contactIds);     // replaces the above
       
    67     QList<QContactLocalId> contactIds() const;
    63     QList<QContactLocalId> contactIds() const;
    68 
    64 
    69     /* Results */
    65     /* Results */
    70     QMap<int, QContactManager::Error> errorMap() const;
    66     QMap<int, QContactManager::Error> errorMap() const;
    71 
    67