summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Voicu <vladvoic@gmail.com>2011-04-30 21:29:11 (GMT)
committerKevin Smith <git@kismith.co.uk>2011-04-30 21:40:27 (GMT)
commit5386ca8195d7471647431bda2f4ddf09b35c0825 (patch)
treeb796ebd69047f07da2bac5bdea71a05c0e867640 /Swiften/Parser/PayloadParsers/ReplaceParser.cpp
parente0e279b85622275dfc4df0bfd5a50ec09694a9b7 (diff)
downloadswift-5386ca8195d7471647431bda2f4ddf09b35c0825.zip
swift-5386ca8195d7471647431bda2f4ddf09b35c0825.tar.bz2
Minor fixes for Replace
Switched from passing by value License: This patch is BSD-licensed, see http://www.opensource.org/licenses/bsd-license.php
Diffstat (limited to 'Swiften/Parser/PayloadParsers/ReplaceParser.cpp')
-rw-r--r--Swiften/Parser/PayloadParsers/ReplaceParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Parser/PayloadParsers/ReplaceParser.cpp b/Swiften/Parser/PayloadParsers/ReplaceParser.cpp
index 9a21d42..fb85fbd 100644
--- a/Swiften/Parser/PayloadParsers/ReplaceParser.cpp
+++ b/Swiften/Parser/PayloadParsers/ReplaceParser.cpp
@@ -14,7 +14,7 @@ namespace Swift {
void ReplaceParser::handleStartElement(const std::string&, const std::string&, const AttributeMap& attributes) {
if (level_ == 0) {
std::string id = attributes.getAttribute("id");
- getPayloadInternal()->setId(id);
+ getPayloadInternal()->setID(id);
}
level_++;
}