diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-18 11:49:36 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-18 11:49:36 +0000 |
commit | 871410044ecbac0d2dd67a7c98f8bcd2df9410eb (patch) | |
tree | f181c30ae2d28e8e6f76d026d79314116072918c /protocols/Xfire/src/sendtypingpacket.h | |
parent | 563378c993b1c08a1bbe23e8f6c372c675c38e7a (diff) |
- naming conflict;
- 64-bit issues;
- warning fixes;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@14987 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src/sendtypingpacket.h')
-rw-r--r-- | protocols/Xfire/src/sendtypingpacket.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/protocols/Xfire/src/sendtypingpacket.h b/protocols/Xfire/src/sendtypingpacket.h index 0ba3637a47..4507310538 100644 --- a/protocols/Xfire/src/sendtypingpacket.h +++ b/protocols/Xfire/src/sendtypingpacket.h @@ -40,9 +40,7 @@ namespace xfirelib { class SendTypingPacket : public XFireSendPacketContent {
public:
- SendTypingPacket() {
- imindex = 0;
- }
+ SendTypingPacket() : m_imindex(0) {}
virtual ~SendTypingPacket() { }
void init(Client *client, string username);
@@ -58,12 +56,12 @@ namespace xfirelib { /**
* SID of the user to who the message should be sent.
*/
- char sid[16];
+ char m_sid[16];
/**
* A running counter for each buddy. (will be initialized to 0 by default.. and..
* shouldn't be a problem to leave it 0)
*/
- long imindex;
+ long m_imindex;
protected:
void initIMIndex();
|