summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-11-15 16:41:07 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-11-15 16:41:07 (GMT)
commitf88a23bd7a7b9f65ac413b862b926eca79bf0f3c (patch)
tree5600c456e8f62d46b67d05cf64cf255e90b761cb /Swiften
parent6d20b700fc8bc285fd58dceb73c89baf58592ddd (diff)
downloadswift-f88a23bd7a7b9f65ac413b862b926eca79bf0f3c.zip
swift-f88a23bd7a7b9f65ac413b862b926eca79bf0f3c.tar.bz2
Squelch warnings
Diffstat (limited to 'Swiften')
-rw-r--r--Swiften/Elements/ErrorPayload.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Elements/ErrorPayload.h b/Swiften/Elements/ErrorPayload.h
index fab398e..9f00d53 100644
--- a/Swiften/Elements/ErrorPayload.h
+++ b/Swiften/Elements/ErrorPayload.h
@@ -41,7 +41,7 @@ namespace Swift {
ErrorPayload(Condition condition = UndefinedCondition, Type type = Cancel, const String& text = String()) : type_(type), condition_(condition), text_(text) { }
- ErrorPayload(const ErrorPayload& other) : type_(other.getType()), condition_(other.getCondition()), text_(other.getText()) {
+ ErrorPayload(const ErrorPayload& other) : Payload(), type_(other.getType()), condition_(other.getCondition()), text_(other.getText()) {
}