aboutsummaryrefslogtreecommitdiff
path: root/source/QXmppIq.cpp
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-03-04 06:49:18 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-03-04 06:49:18 +0000
commitdb8440865fe73618dcc2da70f885eb892623d66a (patch)
tree29b7be3e72645a263af12bb774226eab2c4930de /source/QXmppIq.cpp
parent3c78f630602a6f011f3421b62f121ab5e5025c96 (diff)
downloadqxmpp-db8440865fe73618dcc2da70f885eb892623d66a.tar.gz
start cleaning up accessor names
Diffstat (limited to 'source/QXmppIq.cpp')
-rw-r--r--source/QXmppIq.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/QXmppIq.cpp b/source/QXmppIq.cpp
index 7cb917e8..dc8c2a48 100644
--- a/source/QXmppIq.cpp
+++ b/source/QXmppIq.cpp
@@ -77,15 +77,15 @@ void QXmppIq::toXml( QXmlStreamWriter *xmlWriter ) const
{
xmlWriter->writeStartElement("iq");
- helperToXmlAddAttribute(xmlWriter, "id", getId());
- helperToXmlAddAttribute(xmlWriter, "to", getTo());
- helperToXmlAddAttribute(xmlWriter, "from", getFrom());
+ helperToXmlAddAttribute(xmlWriter, "id", id());
+ helperToXmlAddAttribute(xmlWriter, "to", to());
+ helperToXmlAddAttribute(xmlWriter, "from", from());
if(getTypeStr().isEmpty())
helperToXmlAddAttribute(xmlWriter, "type", "get");
else
helperToXmlAddAttribute(xmlWriter, "type", getTypeStr());
toXmlElementFromChild(xmlWriter);
- getError().toXml(xmlWriter);
+ error().toXml(xmlWriter);
xmlWriter->writeEndElement();
}