X-Git-Url: http://git.maemo.org/git/?p=qwerkisync;a=blobdiff_plain;f=EventTypes%2FPhoneCall.h;fp=EventTypes%2FPhoneCall.h;h=223f30d707c1f89aed7cbc15791b8e7187e3cb1f;hp=c24625861ccdf66f88d8845d7bbf9651c077934c;hb=b320c919e28ce961edcdc6672f418861bccc4eff;hpb=77c0366132f246cba130af5e01aa511ded864a52 diff --git a/EventTypes/PhoneCall.h b/EventTypes/PhoneCall.h index c246258..223f30d 100644 --- a/EventTypes/PhoneCall.h +++ b/EventTypes/PhoneCall.h @@ -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; }