diff options
Diffstat (limited to 'protocols/MSN/src')
-rw-r--r-- | protocols/MSN/src/msn_proto.cpp | 3 | ||||
-rw-r--r-- | protocols/MSN/src/msn_proto.h | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/protocols/MSN/src/msn_proto.cpp b/protocols/MSN/src/msn_proto.cpp index d631d6b1af..0a7103ebd3 100644 --- a/protocols/MSN/src/msn_proto.cpp +++ b/protocols/MSN/src/msn_proto.cpp @@ -649,9 +649,6 @@ DWORD_PTR __cdecl CMsnProto::GetCaps(int type, MCONTACT) case PFLAG_UNIQUEIDTEXT:
return (UINT_PTR)Translate("Live ID");
- case PFLAG_UNIQUEIDSETTING:
- return (UINT_PTR)"wlid";
-
case PFLAG_MAXLENOFMESSAGE:
return 1202;
diff --git a/protocols/MSN/src/msn_proto.h b/protocols/MSN/src/msn_proto.h index ece0e0d6a2..3f9af6c5d3 100644 --- a/protocols/MSN/src/msn_proto.h +++ b/protocols/MSN/src/msn_proto.h @@ -496,7 +496,9 @@ struct CMPlugin : public ACCPROTOPLUGIN<CMsnProto> {
CMPlugin() :
ACCPROTOPLUGIN<CMsnProto>("MSN")
- {}
+ {
+ SetUniqueId("wlid");
+ }
};
#endif
|