diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-06-03 14:03:37 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-06-03 14:03:37 (GMT) |
commit | 00200cfc0df5b616eb2eb48e5bb252f970808d15 (patch) | |
tree | 38388cd3c2c7dc9cacf725a8253f521cc090afc5 /Swiften/Elements/StreamResume.h | |
parent | 21fda3308975201eeebeacd98e2b587ef4448862 (diff) | |
download | swift-contrib-00200cfc0df5b616eb2eb48e5bb252f970808d15.zip swift-contrib-00200cfc0df5b616eb2eb48e5bb252f970808d15.tar.bz2 |
Make StreamResume(d) element use unsigned int for stanza count.
Diffstat (limited to 'Swiften/Elements/StreamResume.h')
-rw-r--r-- | Swiften/Elements/StreamResume.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Swiften/Elements/StreamResume.h b/Swiften/Elements/StreamResume.h index 652182a..aec0909 100644 --- a/Swiften/Elements/StreamResume.h +++ b/Swiften/Elements/StreamResume.h @@ -25,16 +25,16 @@ namespace Swift { return resumeID; } - const boost::optional<int> getHandledStanzasCount() const { + const boost::optional<unsigned int> getHandledStanzasCount() const { return handledStanzasCount; } - void setHandledStanzasCount(int i) { + void setHandledStanzasCount(unsigned int i) { handledStanzasCount = i; } private: std::string resumeID; - boost::optional<int> handledStanzasCount; + boost::optional<unsigned int> handledStanzasCount; }; } |