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/Controllers/UIInterfaces/ChatWindow.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/Controllers/UIInterfaces/ChatWindow.h')
| -rw-r--r-- | Swift/Controllers/UIInterfaces/ChatWindow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/UIInterfaces/ChatWindow.h b/Swift/Controllers/UIInterfaces/ChatWindow.h index daece0e..1c36ffc 100644 --- a/Swift/Controllers/UIInterfaces/ChatWindow.h +++ b/Swift/Controllers/UIInterfaces/ChatWindow.h | |||
| @@ -202,7 +202,7 @@ namespace Swift { | |||
| 202 | virtual void setSecurityLabelsEnabled(bool enabled) = 0; | 202 | virtual void setSecurityLabelsEnabled(bool enabled) = 0; |
| 203 | virtual void setCorrectionEnabled(Tristate enabled) = 0; | 203 | virtual void setCorrectionEnabled(Tristate enabled) = 0; |
| 204 | virtual void setFileTransferEnabled(Tristate enabled) = 0; | 204 | virtual void setFileTransferEnabled(Tristate enabled) = 0; |
| 205 | virtual void setUnreadMessageCount(int count) = 0; | 205 | virtual void setUnreadMessageCount(size_t count) = 0; |
| 206 | virtual void convertToMUC(MUCType mucType) = 0; | 206 | virtual void convertToMUC(MUCType mucType) = 0; |
| 207 | // virtual TreeWidget *getTreeWidget() = 0; | 207 | // virtual TreeWidget *getTreeWidget() = 0; |
| 208 | virtual void setSecurityLabelsError() = 0; | 208 | virtual void setSecurityLabelsError() = 0; |
Swift