equal
deleted
inserted
replaced
73 |
73 |
74 QContactData(const QContactData& other) |
74 QContactData(const QContactData& other) |
75 : QSharedData(other), |
75 : QSharedData(other), |
76 m_id(other.m_id), |
76 m_id(other.m_id), |
77 m_details(other.m_details), |
77 m_details(other.m_details), |
78 m_relationshipsCache(other.m_relationshipsCache), |
78 m_relationshipsCache(other.m_relationshipsCache) |
79 m_reorderedRelationshipsCache(other.m_reorderedRelationshipsCache), |
|
80 m_preferences(other.m_preferences) |
|
81 { |
79 { |
82 } |
80 } |
83 |
81 |
84 ~QContactData() {} |
82 ~QContactData() {} |
85 |
83 |
86 QContactId m_id; |
84 QContactId m_id; |
87 QList<QContactDetail> m_details; |
85 QList<QContactDetail> m_details; |
88 QList<QContactRelationship> m_relationshipsCache; |
86 QList<QContactRelationship> m_relationshipsCache; |
89 QList<QContactRelationship> m_reorderedRelationshipsCache; |
|
90 QMap<QString, int> m_preferences; |
|
91 }; |
87 }; |
92 |
88 |
93 QTM_END_NAMESPACE |
89 QTM_END_NAMESPACE |
94 |
90 |
95 #endif |
91 #endif |