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_util.cpp | |
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_util.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_util.cpp b/protocols/JabberG/src/jabber_util.cpp index 8380a7a7c2..3b7ab9152f 100644 --- a/protocols/JabberG/src/jabber_util.cpp +++ b/protocols/JabberG/src/jabber_util.cpp @@ -396,7 +396,7 @@ void CJabberProto::SendPresenceTo(int status, const TCHAR* to, HXML extra, const if (!m_bJabberOnline) return;
// Send <presence/> update for status (we won't handle ID_STATUS_OFFLINE here)
- short iPriority = (short)getWord("Priority", 0);
+ int iPriority = getDword("Priority", 0);
UpdatePriorityMenu(iPriority);
TCHAR szPriority[40];
|