emailuis/nmailuiengine/src/nmaddattachmentoperation.cpp
changeset 30 759dc5235cdb
parent 23 2dc6caa42ec3
equal deleted inserted replaced
27:9ba4404ef423 30:759dc5235cdb
    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