qtmobility/src/contacts/qcontactabstractrequest.cpp
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 5 453da2cfceef
equal deleted inserted replaced
1:2b40d63a9c3d 4:90517678cc4f
   103 /*!
   103 /*!
   104   \fn QContactAbstractRequest::QContactAbstractRequest()
   104   \fn QContactAbstractRequest::QContactAbstractRequest()
   105   Constructs a new, invalid asynchronous request
   105   Constructs a new, invalid asynchronous request
   106  */
   106  */
   107 
   107 
   108 /*! Constructs a new request from the given request data \a otherd */
   108 /*!
       
   109   \internal
       
   110   Constructs a new request from the given request data \a otherd
       
   111 */
   109 QContactAbstractRequest::QContactAbstractRequest(QContactAbstractRequestPrivate* otherd)
   112 QContactAbstractRequest::QContactAbstractRequest(QContactAbstractRequestPrivate* otherd)
   110     : d_ptr(otherd)
   113     : d_ptr(otherd)
   111 {
   114 {
   112 }
   115 }
   113 
   116 
   166 
   169 
   167 /*! Returns the overall error of the most recent asynchronous operation */
   170 /*! Returns the overall error of the most recent asynchronous operation */
   168 QContactManager::Error QContactAbstractRequest::error() const
   171 QContactManager::Error QContactAbstractRequest::error() const
   169 {
   172 {
   170     return d_ptr->m_error;
   173     return d_ptr->m_error;
   171 }
       
   172 
       
   173 /*!
       
   174   \internal
       
   175   Returns the list of errors which occurred during the most recent asynchronous operation.  Each individual error in the list corresponds to a result in the result list.
       
   176  */
       
   177 QList<QContactManager::Error> QContactAbstractRequest::errors() const
       
   178 {
       
   179     return QList<QContactManager::Error>();
       
   180 }
   174 }
   181 
   175 
   182 /*!
   176 /*!
   183   Returns the type of this asynchronous request
   177   Returns the type of this asynchronous request
   184  */
   178  */