diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-19 00:11:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-19 00:11:08 +0300 |
commit | 1e0a3842186c86e40eff6fa7894e578ae948d179 (patch) | |
tree | 59e22da193009032e6e426d7a69d4bccb860691c /src/resources | |
parent | 1b1cfaf22ab8281943abed6f909fc32f6da46e61 (diff) | |
download | plus-1e0a3842186c86e40eff6fa7894e578ae948d179.tar.gz plus-1e0a3842186c86e40eff6fa7894e578ae948d179.tar.bz2 plus-1e0a3842186c86e40eff6fa7894e578ae948d179.tar.xz plus-1e0a3842186c86e40eff6fa7894e578ae948d179.zip |
Fix typo in chat object.
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/chatobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/chatobject.h b/src/resources/chatobject.h index 1b86e88ad..f81718333 100644 --- a/src/resources/chatobject.h +++ b/src/resources/chatobject.h @@ -29,7 +29,7 @@ struct ChatObject final { ChatObject() : ownerId(0), - charId(0), + chatId(0), maxUsers(0), currentUsers(0), type(0), @@ -40,7 +40,7 @@ struct ChatObject final A_DELETE_COPY(ChatObject) int ownerId; - int charId; + int chatId; uint16_t maxUsers; uint16_t currentUsers; uint8_t type; |