diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-04-22 16:29:46 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-04-22 16:29:46 +0000 |
commit | 775eca92d90a473e087d4598a8539b7842c631b0 (patch) | |
tree | ec1e91c0f52c13e29171c29a867a291774fcd059 | |
parent | 49147d34b67e83ae9d011ce5af1981f63a791af1 (diff) |
ShlExt compilation fix (thx person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9053 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/ShellExt/src/shlcom.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ShellExt/src/shlcom.cpp b/plugins/ShellExt/src/shlcom.cpp index 54fa5a2b09..2908263d46 100644 --- a/plugins/ShellExt/src/shlcom.cpp +++ b/plugins/ShellExt/src/shlcom.cpp @@ -414,7 +414,7 @@ void __stdcall ipcService(ULONG_PTR dwParam) pMMT->dwFlags = HIPC_NOICONS;
// see if we have a custom string for 'Miranda'
- szMiranda = _T("Miranda");
+ szMiranda = "Miranda";
lstrcpynA(pMMT->MirandaName, szMiranda, sizeof(pMMT->MirandaName) - 1);
// for the MRU menu
|