summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_thread.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-09-27 21:40:31 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-09-27 21:40:31 +0000
commitd4c7112ac94d71397957c2bab796167cc91532fd (patch)
treebc9ea58842d4f609a764388ac892e9d3e42ac2cc /protocols/JabberG/src/jabber_thread.cpp
parentbd6b5abd84459ee4aaced4a99c05de6a8e849285 (diff)
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@6255 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_thread.cpp')
-rw-r--r--protocols/JabberG/src/jabber_thread.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp
index 64428e6671..48a14ebc1d 100644
--- a/protocols/JabberG/src/jabber_thread.cpp
+++ b/protocols/JabberG/src/jabber_thread.cpp
@@ -1732,7 +1732,7 @@ void CJabberProto::OnProcessPresence(HXML node, ThreadData* info)
RebuildInfoFrame();
}
else {
- HXML n = xmlGetChild(node , "nick");
+ HXML n = xmlGetChild(node, "nick");
nick = (n == NULL) ? JabberNickFromJID(from) : mir_tstrdup(xmlGetText(n));
if (nick != NULL) {
Log("%S (%S) requests authorization", nick, from);
@@ -1742,24 +1742,19 @@ void CJabberProto::OnProcessPresence(HXML node, ThreadData* info)
return;
}
- if ( !_tcscmp(type, _T("unsubscribe"))) {
+ if ( !_tcscmp(type, _T("unsubscribe")))
if (hContact = HContactFromJID(from))
AddDbPresenceEvent(hContact, JABBER_DB_EVENT_PRESENCE_UNSUBSCRIBE);
- }
- if ( !_tcscmp(type, _T("unsubscribed"))) {
+ if ( !_tcscmp(type, _T("unsubscribed")))
if (hContact = HContactFromJID(from))
AddDbPresenceEvent(hContact, JABBER_DB_EVENT_PRESENCE_UNSUBSCRIBED);
- }
- if ( !_tcscmp(type, _T("error"))) {
- if (hContact = HContactFromJID(from)) {
+ if ( !_tcscmp(type, _T("error")))
+ if (hContact = HContactFromJID(from))
AddDbPresenceEvent(hContact, JABBER_DB_EVENT_PRESENCE_ERROR);
- }
- }
if ( !_tcscmp(type, _T("subscribed"))) {
-
if (hContact = HContactFromJID(from))
AddDbPresenceEvent(hContact, JABBER_DB_EVENT_PRESENCE_SUBSCRIBED);