diff options
author | George Hazan <george.hazan@gmail.com> | 2016-03-04 17:55:53 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-03-04 17:55:53 +0000 |
commit | 56cfe30444ead1fb844ed5d5036ee91f49501331 (patch) | |
tree | a5d4987ab8f23236cc9de3253b850cd948cd5a1f /protocols/JabberG/src/jabber_proto.h | |
parent | ccf3bef719e71ccafe3a0bd154d0e85d7184a15b (diff) |
end of perversion with short ints (fixes #1204)
git-svn-id: http://svn.miranda-ng.org/main/trunk@16425 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rw-r--r-- | protocols/JabberG/src/jabber_proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h index 42546c77ab..2687498404 100644 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -573,10 +573,10 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface void AuthWorker(MCONTACT hContact, char* authReqType);
- void UpdatePriorityMenu(short priority);
+ void UpdatePriorityMenu(int priority);
HGENMENU m_hMenuPriorityRoot;
- short m_priorityMenuVal;
+ int m_priorityMenuVal;
bool m_priorityMenuValSet;
//---- jabber_misc.c -----------------------------------------------------------------
|