summaryrefslogtreecommitdiff
path: root/protocols/IcqOscarJ
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-11-23 14:22:33 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-11-23 14:22:33 +0000
commit0b696142c92ba0c55d4b99f50d7d2a360e56ad87 (patch)
tree8dd701349094c06ee144d81b05a75d271fa535f0 /protocols/IcqOscarJ
parent69ce91bf09ba2244fd689f9fa238f7a2f229c28e (diff)
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@2444 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IcqOscarJ')
-rw-r--r--protocols/IcqOscarJ/src/icq_xstatus.cpp49
1 files changed, 9 insertions, 40 deletions
diff --git a/protocols/IcqOscarJ/src/icq_xstatus.cpp b/protocols/IcqOscarJ/src/icq_xstatus.cpp
index 427b413972..f5b659d867 100644
--- a/protocols/IcqOscarJ/src/icq_xstatus.cpp
+++ b/protocols/IcqOscarJ/src/icq_xstatus.cpp
@@ -435,9 +435,6 @@ void CIcqProto::handleXStatusCaps(DWORD dwUIN, char *szUID, HANDLE hContact, BYT
NetLog_Server("%s changed custom status to %s.", strUID(dwUIN, szUID), ICQTranslateUtfStatic(nameXStatus[i], str, MAX_PATH));
bChanged = TRUE;
}
-#ifdef _DEBUG
- else NetLog_Server("%s has custom status %s.", strUID(dwUIN, szUID), ICQTranslateUtfStatic(nameXStatus[i], str, MAX_PATH));
-#endif
if (getSettingByte(NULL, "XStatusAuto", DEFAULT_XSTATUS_AUTO))
requestXStatusDetails(hContact, TRUE);
@@ -445,22 +442,11 @@ void CIcqProto::handleXStatusCaps(DWORD dwUIN, char *szUID, HANDLE hContact, BYT
nCustomStatusID = bXStatusId;
break;
}
- }
+ }
- if (nCustomStatusID == 0) {
-#ifdef _DEBUG
- if (m_iStatus != ID_STATUS_OFFLINE && CheckContactCapabilities(hContact, CAPF_XSTATUS))
- NetLog_Server("%s has removed custom status.", strUID(dwUIN, szUID));
-#endif
- ClearContactCapabilities(hContact, CAPF_XSTATUS);
- }
+ if (nCustomStatusID == 0)
+ ClearContactCapabilities(hContact, CAPF_XSTATUS);
}
-#ifdef _DEBUG
- else if (CheckContactCapabilities(hContact, CAPF_XSTATUS)) {
- char str[MAX_PATH];
- NetLog_Server("%s has custom status %s.", strUID(dwUIN, szUID), ICQTranslateUtfStatic(nameXStatus[nOldXStatusID-1], str, MAX_PATH));
- }
-#endif
}
if (m_bMoodsEnabled) {
@@ -489,34 +475,17 @@ void CIcqProto::handleXStatusCaps(DWORD dwUIN, char *szUID, HANDLE hContact, BYT
NetLog_Server("%s changed mood to %s.", strUID(dwUIN, szUID), ICQTranslateUtfStatic(nameXStatus[i], str, MAX_PATH));
bChanged = TRUE;
}
-#ifdef _DEBUG
- else if (nOldXStatusID != bXStatusId)
- NetLog_Server("%s changed mood to %s.", strUID(dwUIN, szUID), ICQTranslateUtfStatic(nameXStatus[i], str, MAX_PATH));
- else
- NetLog_Server("%s has mood %s.", strUID(dwUIN, szUID), ICQTranslateUtfStatic(nameXStatus[i], str, MAX_PATH));
-#endif
+
// cannot retrieve mood details here - need to be processed with new user details
nMoodID = bXStatusId;
break;
}
- }
+ }
- if (nMoodID == 0 && moods) {
-#ifdef _DEBUG
- if (m_iStatus != ID_STATUS_OFFLINE && CheckContactCapabilities(hContact, CAPF_STATUS_MOOD))
- NetLog_Server("%s has removed mood.", strUID(dwUIN, szUID));
-#endif
- ClearContactCapabilities(hContact, CAPF_STATUS_MOOD);
- }
- }
-#ifdef _DEBUG
- // Mood was not changed, but contact has one, add a small log notice
- else if (CheckContactCapabilities(hContact, CAPF_STATUS_MOOD)) {
- char str[MAX_PATH];
- NetLog_Server("%s has mood %s.", strUID(dwUIN, szUID), ICQTranslateUtfStatic(nameXStatus[nOldXStatusID-1], str, MAX_PATH));
+ if (nMoodID == 0 && moods)
+ ClearContactCapabilities(hContact, CAPF_STATUS_MOOD);
}
-#endif
}
if (nCustomStatusID != 0 && nMoodID != 0 && nCustomStatusID != nMoodID)
@@ -1045,10 +1014,10 @@ INT_PTR CIcqProto::GetXStatusEx(WPARAM wParam, LPARAM lParam)
return 1; // Failure
if (pData->flags & CSSF_UNICODE) {
- char *text = (char*)nameXStatus[status -1];
+ char *text = (char*)nameXStatus[status-1];
MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, text, -1, pData->pwszName, MAX_PATH);
}
- else strcpy(pData->pszName, (char*)nameXStatus[status - 1]);
+ else strcpy(pData->pszName, (char*)nameXStatus[status-1]);
}
else { // moods does not support status title
if (!m_bXStatusEnabled) return 1;