equal
deleted
inserted
replaced
62 |
62 |
63 /*! Constructs a new detail definition remove request whose parent is the specified \a parent */ |
63 /*! Constructs a new detail definition remove request whose parent is the specified \a parent */ |
64 QContactDetailDefinitionRemoveRequest::QContactDetailDefinitionRemoveRequest(QObject* parent) |
64 QContactDetailDefinitionRemoveRequest::QContactDetailDefinitionRemoveRequest(QObject* parent) |
65 : QContactAbstractRequest(new QContactDetailDefinitionRemoveRequestPrivate, parent) |
65 : QContactAbstractRequest(new QContactDetailDefinitionRemoveRequestPrivate, parent) |
66 { |
66 { |
|
67 } |
|
68 |
|
69 /*! Frees any memory used by this request */ |
|
70 QContactDetailDefinitionRemoveRequest::~QContactDetailDefinitionRemoveRequest() |
|
71 { |
|
72 QContactAbstractRequestPrivate::notifyEngine(this); |
|
73 } |
|
74 |
|
75 /*! |
|
76 \deprecated |
|
77 */ |
|
78 void QContactDetailDefinitionRemoveRequest::setDefinitionNames(const QString& contactType, const QStringList& definitionNames) |
|
79 { |
|
80 setDefinitionNames(definitionNames); |
|
81 setContactType(contactType); |
67 } |
82 } |
68 |
83 |
69 /*! |
84 /*! |
70 Sets the name of the detail definition to remove from the manager to \a definitionName. |
85 Sets the name of the detail definition to remove from the manager to \a definitionName. |
71 Managers may store different definitions which are valid for different contact types, and so attempting to remove definitions with certain names may fail if no such |
86 Managers may store different definitions which are valid for different contact types, and so attempting to remove definitions with certain names may fail if no such |