diff options
Diffstat (limited to 'Swiften/Elements')
| -rw-r--r-- | Swiften/Elements/StanzaAck.cpp | 8 | ||||
| -rw-r--r-- | Swiften/Elements/StanzaAck.h | 4 |
2 files changed, 5 insertions, 7 deletions
diff --git a/Swiften/Elements/StanzaAck.cpp b/Swiften/Elements/StanzaAck.cpp index bd0b78d..dda97f5 100644 --- a/Swiften/Elements/StanzaAck.cpp +++ b/Swiften/Elements/StanzaAck.cpp | |||
| @@ -1,19 +1,17 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Copyright (c) 2013 Isode Limited. | 2 | * Copyright (c) 2013-2018 Isode Limited. |
| 3 | * All rights reserved. | 3 | * All rights reserved. |
| 4 | * See the COPYING file for more information. | 4 | * See the COPYING file for more information. |
| 5 | */ | 5 | */ |
| 6 | 6 | ||
| 7 | #include <Swiften/Elements/StanzaAck.h> | 7 | #include <Swiften/Elements/StanzaAck.h> |
| 8 | 8 | ||
| 9 | #include <boost/numeric/conversion/cast.hpp> | ||
| 10 | |||
| 11 | using namespace Swift; | 9 | using namespace Swift; |
| 12 | 10 | ||
| 13 | StanzaAck::~StanzaAck() { | 11 | StanzaAck::~StanzaAck() { |
| 14 | } | 12 | } |
| 15 | 13 | ||
| 16 | void StanzaAck::setHandledStanzasCount(int i) { | 14 | void StanzaAck::setHandledStanzasCount(unsigned int i) { |
| 17 | handledStanzasCount = boost::numeric_cast<unsigned int>(i); | 15 | handledStanzasCount = i; |
| 18 | valid = true; | 16 | valid = true; |
| 19 | } | 17 | } |
diff --git a/Swiften/Elements/StanzaAck.h b/Swiften/Elements/StanzaAck.h index 68f0a2f..f664aca 100644 --- a/Swiften/Elements/StanzaAck.h +++ b/Swiften/Elements/StanzaAck.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Copyright (c) 2010-2016 Isode Limited. | 2 | * Copyright (c) 2010-2018 Isode Limited. |
| 3 | * All rights reserved. | 3 | * All rights reserved. |
| 4 | * See the COPYING file for more information. | 4 | * See the COPYING file for more information. |
| 5 | */ | 5 | */ |
| @@ -24,7 +24,7 @@ namespace Swift { | |||
| 24 | return handledStanzasCount; | 24 | return handledStanzasCount; |
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | void setHandledStanzasCount(int i); | 27 | void setHandledStanzasCount(unsigned int i); |
| 28 | 28 | ||
| 29 | bool isValid() const { | 29 | bool isValid() const { |
| 30 | return valid; | 30 | return valid; |
Swift