diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-11-15 16:41:07 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-11-15 16:41:07 (GMT) |
commit | f88a23bd7a7b9f65ac413b862b926eca79bf0f3c (patch) | |
tree | 5600c456e8f62d46b67d05cf64cf255e90b761cb /Swiften | |
parent | 6d20b700fc8bc285fd58dceb73c89baf58592ddd (diff) | |
download | swift-f88a23bd7a7b9f65ac413b862b926eca79bf0f3c.zip swift-f88a23bd7a7b9f65ac413b862b926eca79bf0f3c.tar.bz2 |
Squelch warnings
Diffstat (limited to 'Swiften')
-rw-r--r-- | Swiften/Elements/ErrorPayload.h | 2 |
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()) { } |