emailuis/nmailuiengine/src/nmaddattachmentoperation.cpp
changeset 43 99bcbff212ad
parent 23 2dc6caa42ec3
equal deleted inserted replaced
42:139d4b7b2938 43:99bcbff212ad
    20 /*!
    20 /*!
    21   Constructor
    21   Constructor
    22   */
    22   */
    23 NmAddAttachmentsOperation::NmAddAttachmentsOperation()
    23 NmAddAttachmentsOperation::NmAddAttachmentsOperation()
    24 {
    24 {
       
    25     NM_FUNCTION;
    25 }
    26 }
    26 
    27 
    27 /*!
    28 /*!
    28   Destructor
    29   Destructor
    29  */
    30  */
    30 NmAddAttachmentsOperation::~NmAddAttachmentsOperation()
    31 NmAddAttachmentsOperation::~NmAddAttachmentsOperation()
    31 {
    32 {
       
    33     NM_FUNCTION;
    32 }
    34 }
    33 
    35 
    34 /*!
    36 /*!
    35   \brief Slot, complete
    37   \brief Slot, complete
    36   The performer of the asynchronous function call should use this slot when
    38   The performer of the asynchronous function call should use this slot when
    37   the operation is completed, this will emit the operationPartCompleted signal * 
    39   the operation is completed, this will emit the operationPartCompleted signal * 
    38   \param result Result from operation
    40   \param result Result from operation
    39  */
    41  */
    40 void NmAddAttachmentsOperation::completeOperationPart(const QString &fileName, const NmId &msgPartId, int result)
    42 void NmAddAttachmentsOperation::completeOperationPart(const QString &fileName, const NmId &msgPartId, int result)
    41 {
    43 {
       
    44     NM_FUNCTION;
       
    45     
    42     emit operationPartCompleted(fileName, msgPartId, result);
    46     emit operationPartCompleted(fileName, msgPartId, result);
    43 }
    47 }
    44 
    48 
    45 
    49