summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorJesús Corrius <jesus@softcatala.org>2012-05-24 10:12:39 +0200
committerJesús Corrius <jesus@softcatala.org>2012-05-24 10:12:39 +0200
commit8fd58d062786a44572a087f16476cd5fc01c0408 (patch)
tree5b35a8ab6be30b2d96d6ab18eb87e4702141991c /desktop
parentdbbda42a4373dcd28c9f3b11a9d66fa1f69bbb85 (diff)
replace wcscat_s -> wcscat to please minGW
Diffstat (limited to 'desktop')
-rw-r--r--desktop/win32/source/applauncher/appusermodelid.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/win32/source/applauncher/appusermodelid.cxx b/desktop/win32/source/applauncher/appusermodelid.cxx
index 721fefa6edc4..209581768f93 100644
--- a/desktop/win32/source/applauncher/appusermodelid.cxx
+++ b/desktop/win32/source/applauncher/appusermodelid.cxx
@@ -37,7 +37,7 @@ void SetExplicitAppUserModelID(PCWSTR AppID)
{
WCHAR szShell32[MAX_PATH];
GetSystemDirectoryW(szShell32, MAX_PATH);
- wcscat_s(szShell32, MAX_PATH, L"\\Shell32.dll");
+ wcscat(szShell32, L"\\Shell32.dll");
HINSTANCE hinstDll = LoadLibraryW(szShell32);