diff options
author | George Hazan <ghazan@miranda.im> | 2019-02-20 13:29:24 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-02-20 13:29:24 +0300 |
commit | 0dfd93b286dd2ab1caf7fcaacbce7273c492433b (patch) | |
tree | ca219dee0b67d4f57e90f9934ffdcedae6232036 /protocols/JabberG/src/jabber_proto.h | |
parent | 397d070df1e8b0f208cc148371d3fd56f314afc6 (diff) |
Jabber:
- fixes #1855 (Jabber: chinese in services info);
- fixes #1854 (Jabber: crash on receiving channels list);
- strange obsolete class UserInfoStringBuf removed;
- code optimization
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rwxr-xr-x | 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 d21b7a0078..d0f42a7731 100755 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -434,8 +434,8 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface void OnIqResultServiceDiscoveryItems(const TiXmlElement *iqNode, CJabberIqInfo *pInfo);
void OnIqResultServiceDiscoveryRootInfo(const TiXmlElement *iqNode, CJabberIqInfo *pInfo);
void OnIqResultServiceDiscoveryRootItems(const TiXmlElement *iqNode, CJabberIqInfo *pInfo);
- BOOL SendInfoRequest(CJabberSDNode *pNode, TiXmlElement *parent);
- BOOL SendBothRequests(CJabberSDNode *pNode, TiXmlElement *parent);
+ BOOL SendInfoRequest(CJabberSDNode *pNode, TiXmlNode *parent);
+ BOOL SendBothRequests(CJabberSDNode *pNode, TiXmlNode *parent = nullptr);
void PerformBrowse(HWND hwndDlg);
BOOL IsNodeRegistered(CJabberSDNode *pNode);
void ApplyNodeIcon(HTREELISTITEM hItem, CJabberSDNode *pNode);
|