diff options
author | George Hazan <george.hazan@gmail.com> | 2013-10-10 12:52:34 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-10-10 12:52:34 +0000 |
commit | 4f8ae924e26821de7d7ec033ac99056008aac10f (patch) | |
tree | 607c201e81b0ba8010e81ba89374cdf9215b36e8 /protocols/MSN/src | |
parent | 808419ba4249c4cfb2c4bb5891a599543ca9f25a (diff) |
PS_GETUNREADEMAILCOUNT - the unified macro for "/GetUnreadEmailCount"
git-svn-id: http://svn.miranda-ng.org/main/trunk@6425 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN/src')
-rw-r--r-- | protocols/MSN/src/msn_global.h | 2 | ||||
-rw-r--r-- | protocols/MSN/src/msn_proto.cpp | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/protocols/MSN/src/msn_global.h b/protocols/MSN/src/msn_global.h index a02a54645a..1011df19f1 100644 --- a/protocols/MSN/src/msn_global.h +++ b/protocols/MSN/src/msn_global.h @@ -139,8 +139,6 @@ const char MSN_USER_AGENT[] = "Mozilla/4.0 (compatible; MSIE 8.0; Wind #define MS_EDIT_ALERTS "/EditAlerts"
#define MS_SET_NICKNAME_UI "/SetNicknameUI"
-#define MSN_GETUNREAD_EMAILCOUNT "/GetUnreadEmailCount"
-
extern const char sttVoidUid[];
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/protocols/MSN/src/msn_proto.cpp b/protocols/MSN/src/msn_proto.cpp index 6648e538c5..8312a02c9b 100644 --- a/protocols/MSN/src/msn_proto.cpp +++ b/protocols/MSN/src/msn_proto.cpp @@ -70,7 +70,7 @@ CMsnProto::CMsnProto(const char* aProtoName, const TCHAR* aUserName) : CreateProtoService(PS_SETMYNICKNAME, &CMsnProto::SetNickName);
CreateProtoService(PS_SEND_NUDGE, &CMsnProto::SendNudge);
- CreateProtoService(MSN_GETUNREAD_EMAILCOUNT, &CMsnProto::GetUnreadEmailCount);
+ CreateProtoService(PS_GETUNREADEMAILCOUNT, &CMsnProto::GetUnreadEmailCount);
// event hooks
HookProtoEvent(ME_MSG_WINDOWPOPUP, &CMsnProto::OnWindowPopup);
|