diff options
| author | Edwin Mons <edwin.mons@isode.com> | 2018-11-08 14:12:36 (GMT) |
|---|---|---|
| committer | Edwin Mons <edwin.mons@isode.com> | 2018-11-08 15:30:19 (GMT) |
| commit | 0b4e062a59613b2597b712c0106c3ed08b747637 (patch) | |
| tree | 7b062a8123d37be7226d4eb36c553b04563255c6 /Swift/QtUI/QtChatWindow.h | |
| parent | cf3d517763a3d74a2ec9fd6f7bdee8cbaee3550f (diff) | |
| download | swift-0b4e062a59613b2597b712c0106c3ed08b747637.zip swift-0b4e062a59613b2597b712c0106c3ed08b747637.tar.bz2 | |
Change unread counters to size_t
Since the counters cannot be negative, changing the type used for unread
counters to size_t seems a better fit, and it avoids the need for
numeric_casts.
Test-Information:
Unit tests pass on macOS 10.13
Change-Id: I61badcfc410f0cce7f922da90b50ef5a809c6521
Diffstat (limited to 'Swift/QtUI/QtChatWindow.h')
| -rw-r--r-- | Swift/QtUI/QtChatWindow.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Swift/QtUI/QtChatWindow.h b/Swift/QtUI/QtChatWindow.h index 8cc3283..b876d1e 100644 --- a/Swift/QtUI/QtChatWindow.h +++ b/Swift/QtUI/QtChatWindow.h | |||
| @@ -106,7 +106,7 @@ namespace Swift { | |||
| 106 | void show(); | 106 | void show(); |
| 107 | bool isVisible() const; | 107 | bool isVisible() const; |
| 108 | void activate(); | 108 | void activate(); |
| 109 | void setUnreadMessageCount(int count); | 109 | void setUnreadMessageCount(size_t count); |
| 110 | void convertToMUC(MUCType mucType); | 110 | void convertToMUC(MUCType mucType); |
| 111 | // TreeWidget *getTreeWidget(); | 111 | // TreeWidget *getTreeWidget(); |
| 112 | void setAvailableSecurityLabels(const std::vector<SecurityLabelsCatalog::Item>& labels); | 112 | void setAvailableSecurityLabels(const std::vector<SecurityLabelsCatalog::Item>& labels); |
| @@ -119,7 +119,7 @@ namespace Swift { | |||
| 119 | void setContactChatState(ChatState::ChatStateType state); | 119 | void setContactChatState(ChatState::ChatStateType state); |
| 120 | void setRosterModel(Roster* roster); | 120 | void setRosterModel(Roster* roster); |
| 121 | void setTabComplete(TabComplete* completer); | 121 | void setTabComplete(TabComplete* completer); |
| 122 | int getCount(); | 122 | size_t getCount(); |
| 123 | virtual void replaceSystemMessage(const ChatMessage& message, const std::string& id, const TimestampBehaviour timestampBehaviour); | 123 | virtual void replaceSystemMessage(const ChatMessage& message, const std::string& id, const TimestampBehaviour timestampBehaviour); |
| 124 | void replaceLastMessage(const ChatMessage& message, const TimestampBehaviour timestampBehaviour); | 124 | void replaceLastMessage(const ChatMessage& message, const TimestampBehaviour timestampBehaviour); |
| 125 | void setAckState(const std::string& id, AckState state); | 125 | void setAckState(const std::string& id, AckState state); |
| @@ -201,7 +201,7 @@ namespace Swift { | |||
| 201 | void handleFocusTimerTick(); | 201 | void handleFocusTimerTick(); |
| 202 | 202 | ||
| 203 | private: | 203 | private: |
| 204 | int unreadCount_; | 204 | size_t unreadCount_; |
| 205 | bool contactIsTyping_; | 205 | bool contactIsTyping_; |
| 206 | LastLineTracker lastLineTracker_; | 206 | LastLineTracker lastLineTracker_; |
| 207 | std::string id_; | 207 | std::string id_; |
Swift