Renamed some setters for consistency.
[qwerkisync] / EventTypes / PhoneCall.h
index c246258..223f30d 100644 (file)
@@ -46,16 +46,16 @@ namespace EventTypes
                virtual const uint HashCode() const;
 
                const Settings::eDirection Destination() const { return m_Destination; }
-               void setDestination(const Settings::eDirection destination) { m_Destination = destination; }
+               void Destination(const Settings::eDirection destination) { m_Destination = destination; }
 
                virtual const QDateTime Timestamp() const { return m_Timestamp; }
-               void setTimestamp(const QDateTime timestamp) { m_Timestamp = timestamp; }
+               void Timestamp(const QDateTime timestamp) { m_Timestamp = timestamp; }
 
                const QString Tel() const { return m_Tel; }
-               void setTel(const QString tel) { m_Tel = tel; }
+               void Tel(const QString tel) { m_Tel = tel; }
 
                virtual const int DurationInSeconds() const { return m_DurationInSeconds; }
-               void setDurationInSeconds(const int durationInSeconds) { m_DurationInSeconds = durationInSeconds; }
+               void DurationInSeconds(const int durationInSeconds) { m_DurationInSeconds = durationInSeconds; }
 
                virtual const AttachmentCollection & Attachments() const { return m_Attachments; }
                virtual AttachmentCollection & Attachments() { return m_Attachments; }