diff options
author | ForNeVeR <neverthness@gmail.com> | 2014-04-05 10:04:44 +0000 |
---|---|---|
committer | ForNeVeR <neverthness@gmail.com> | 2014-04-05 10:04:44 +0000 |
commit | 0b9c05beba5766dfc43e127244b1c4893e9c8a5d (patch) | |
tree | bf6fa84b5007683388dd466ea80360488be7150a /protocols/JabberG | |
parent | 6accc5c67e28a76a494526206058e1b7e50b09e0 (diff) |
Jabber: fix issue #633 (wrong function called on remote command list).
git-svn-id: http://svn.miranda-ng.org/main/trunk@8862 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG')
-rw-r--r-- | protocols/JabberG/src/jabber_adhoc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_adhoc.cpp b/protocols/JabberG/src/jabber_adhoc.cpp index 0c745d950c..9a2ba33a04 100644 --- a/protocols/JabberG/src/jabber_adhoc.cpp +++ b/protocols/JabberG/src/jabber_adhoc.cpp @@ -108,7 +108,7 @@ void CJabberProto::OnIqResult_CommandExecution(HXML iqNode, CJabberIqInfo *pInfo void CJabberProto::AdHoc_RequestListOfCommands(TCHAR * szResponder, HWND hwndDlg)
{
- m_ThreadInfo->send(XmlNodeIq(AddIQ(&CJabberProto::OnIqResultGetCollectionList, JABBER_IQ_TYPE_GET, szResponder, 0, -1, hwndDlg))
+ m_ThreadInfo->send(XmlNodeIq(AddIQ(&CJabberProto::OnIqResult_ListOfCommands, JABBER_IQ_TYPE_GET, szResponder, 0, -1, hwndDlg))
<< XQUERY(JABBER_FEAT_DISCO_ITEMS) << XATTR(_T("node"), JABBER_FEAT_COMMANDS));
}
|