diff options
author | George Hazan <george.hazan@gmail.com> | 2013-10-02 08:18:54 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-10-02 08:18:54 +0000 |
commit | 19ccfc7c1220fdf728f67e466081960e19b00b06 (patch) | |
tree | 47273c3df7dc1ea768418e1f2e4509d66ecc3257 | |
parent | 2dec9265b147797a062bdc5734c549ef1c4665bf (diff) |
MRA: fix for the received Nudge event's text
git-svn-id: http://svn.miranda-ng.org/main/trunk@6302 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/MRA/src/Mra_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/MRA/src/Mra_proto.cpp b/protocols/MRA/src/Mra_proto.cpp index f547e052dc..c1f6914e8d 100644 --- a/protocols/MRA/src/Mra_proto.cpp +++ b/protocols/MRA/src/Mra_proto.cpp @@ -1856,7 +1856,7 @@ DWORD CMraProto::MraRecvCommand_Message(DWORD dwTime, DWORD dwFlags, CMStringA & if (m_heNudgeReceived)
NotifyEventHooks(m_heNudgeReceived, (WPARAM)hContact, NULL);
else {
- pre.flags = 0;
+ pre.flags = PREF_UNICODE;
pre.szMessage = (LPSTR)TranslateTS(MRA_ALARM_MESSAGE);
ProtoChainRecvMsg(hContact, &pre);
}
|