diff options
author | Andre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk> | 2011-05-16 14:34:52 -0300 |
---|---|---|
committer | Andre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk> | 2011-05-16 15:03:28 -0300 |
commit | 85803b43273892a26121333f3019cd04b8d523cf (patch) | |
tree | b87c7af2ce80110817f810c0bf41eebd3de4f876 | |
parent | e100b21206fbb9c65e4bdc1a1d2d79ce377e428b (diff) |
Message: Rename DeliveryDetails echo/hasEcho to echoedMessage/hasEchoedMessage.
-rw-r--r-- | TelepathyQt4/message.cpp | 4 | ||||
-rw-r--r-- | TelepathyQt4/message.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/TelepathyQt4/message.cpp b/TelepathyQt4/message.cpp index c891df78..a53d4778 100644 --- a/TelepathyQt4/message.cpp +++ b/TelepathyQt4/message.cpp @@ -588,7 +588,7 @@ QString ReceivedMessage::DeliveryDetails::dbusError() const return ret; } -bool ReceivedMessage::DeliveryDetails::hasEcho() const +bool ReceivedMessage::DeliveryDetails::hasEchoedMessage() const { if (!isValid()) { return false; @@ -596,7 +596,7 @@ bool ReceivedMessage::DeliveryDetails::hasEcho() const return partContains(mPriv->parts, 0, "delivery-echo"); } -Message ReceivedMessage::DeliveryDetails::echo() const +Message ReceivedMessage::DeliveryDetails::echoedMessage() const { if (!isValid()) { return Message(); diff --git a/TelepathyQt4/message.h b/TelepathyQt4/message.h index 729cadc6..90f31c09 100644 --- a/TelepathyQt4/message.h +++ b/TelepathyQt4/message.h @@ -123,8 +123,8 @@ public: bool hasDBusError() const; QString dbusError() const; - bool hasEcho() const; - Message echo() const; + bool hasEchoedMessage() const; + Message echoedMessage() const; private: friend class ReceivedMessage; |