diff options
Diffstat (limited to 'plugins/Nudge/src/main.cpp')
-rw-r--r-- | plugins/Nudge/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Nudge/src/main.cpp b/plugins/Nudge/src/main.cpp index 03f5628709..db503b162a 100644 --- a/plugins/Nudge/src/main.cpp +++ b/plugins/Nudge/src/main.cpp @@ -452,10 +452,10 @@ void Nudge_ShowPopup(CNudgeElement n, MCONTACT hContact, TCHAR * Message) NudgePopup.PluginWindowProc = NudgePopupProc;
NudgePopup.PluginData = (void *)1;
- //lstrcpy(NudgePopup.lpzText, Translate(Message));
- lstrcpy(NudgePopup.lptzText, Message);
+ //mir_tstrcpy(NudgePopup.lpzText, Translate(Message));
+ mir_tstrcpy(NudgePopup.lptzText, Message);
- lstrcpy(NudgePopup.lptzContactName, lpzContactName);
+ mir_tstrcpy(NudgePopup.lptzContactName, lpzContactName);
CallService(MS_POPUP_ADDPOPUPT, (WPARAM)&NudgePopup, 0);
}
|