From f2de79cb2eb8247548650ee80d75be109ac66ee7 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 23 May 2015 16:25:49 +0000 Subject: replace strcat to mir_strcat git-svn-id: http://svn.miranda-ng.org/main/trunk@13777 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/WebView/src/main.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'plugins/WebView') diff --git a/plugins/WebView/src/main.cpp b/plugins/WebView/src/main.cpp index 98e356aa69..8cd85bd533 100644 --- a/plugins/WebView/src/main.cpp +++ b/plugins/WebView/src/main.cpp @@ -51,35 +51,35 @@ void InitServices() char SvcFunc[100]; mir_strcpy(SvcFunc, MODULENAME); - strcat(SvcFunc, PS_GETCAPS); + mir_strcat(SvcFunc, PS_GETCAPS); CreateServiceFunction(SvcFunc, GetCaps); mir_strcpy(SvcFunc, MODULENAME); - strcat(SvcFunc, PS_GETNAME); + mir_strcat(SvcFunc, PS_GETNAME); CreateServiceFunction(SvcFunc, GetName); mir_strcpy(SvcFunc, MODULENAME); - strcat(SvcFunc, PS_LOADICON); + mir_strcat(SvcFunc, PS_LOADICON); CreateServiceFunction(SvcFunc, BPLoadIcon); mir_strcpy(SvcFunc, MODULENAME); - strcat(SvcFunc, PS_SETSTATUS); + mir_strcat(SvcFunc, PS_SETSTATUS); CreateServiceFunction(SvcFunc, SetStatus); mir_strcpy(SvcFunc, MODULENAME); - strcat(SvcFunc, PS_GETSTATUS); + mir_strcat(SvcFunc, PS_GETSTATUS); CreateServiceFunction(SvcFunc, GetStatus); // mir_strcpy(SvcFunc, MODULENAME); - strcat(SvcFunc, PS_BASICSEARCH); + mir_strcat(SvcFunc, PS_BASICSEARCH); CreateServiceFunction(SvcFunc, BasicSearch); mir_strcpy(SvcFunc, MODULENAME); - strcat(SvcFunc, PS_ADDTOLIST); + mir_strcat(SvcFunc, PS_ADDTOLIST); CreateServiceFunction(SvcFunc, AddToList); mir_strcpy(SvcFunc, MODULENAME); - strcat(SvcFunc, PSS_GETINFO); + mir_strcat(SvcFunc, PSS_GETINFO); CreateServiceFunction(SvcFunc, GetInfo); } -- cgit v1.2.3