equal
deleted
inserted
replaced
22 |
22 |
23 /*! |
23 /*! |
24 Class constructor. |
24 Class constructor. |
25 */ |
25 */ |
26 NmApiMessagePrivate::NmApiMessagePrivate() |
26 NmApiMessagePrivate::NmApiMessagePrivate() |
|
27 { |
|
28 NM_FUNCTION; |
|
29 } |
|
30 |
|
31 /*! |
|
32 Class copy constructor. |
|
33 */ |
|
34 NmApiMessagePrivate::NmApiMessagePrivate(const NmApiMessagePrivate &other) |
|
35 : QSharedData(other), |
|
36 mPlainTextContent(other.mPlainTextContent), |
|
37 mHtmlContent(other.mHtmlContent), |
|
38 mComplete(other.mComplete), |
|
39 mAttachments(other.mAttachments), |
|
40 mEnvelope(other.mEnvelope) |
27 { |
41 { |
28 NM_FUNCTION; |
42 NM_FUNCTION; |
29 } |
43 } |
30 |
44 |
31 /*! |
45 /*! |