From 36e9913408640ccbfcae00f9404714a71445b206 Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Fri, 18 Sep 2009 09:29:39 +0000 Subject: [PATCH] - Fix a bug which broke build svn path=/trunk/; revision=43072 --- reactos/dll/win32/shell32/shfldr_desktop.c | 2 +- reactos/dll/win32/shell32/shfldr_fs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/shell32/shfldr_desktop.c b/reactos/dll/win32/shell32/shfldr_desktop.c index 0222fe2611a..c0515535cf4 100644 --- a/reactos/dll/win32/shell32/shfldr_desktop.c +++ b/reactos/dll/win32/shell32/shfldr_desktop.c @@ -1385,7 +1385,7 @@ ISF_Desktop_ISFHelper_fnCopyItems (ISFHelper * iface, IShellFolder * pSFFrom, UI pszFileName = wcsrchr(pszSrcList, '\\'); pszFileName++; - if (LoadStringW(shell32_hInstance, IDS_COPY_FROM, pszTarget, MAX_PATH - length)) + if (LoadStringW(shell32_hInstance, IDS_COPY_OF, pszTarget, MAX_PATH - length)) { wcscat(szTargetPath, L" "); } diff --git a/reactos/dll/win32/shell32/shfldr_fs.c b/reactos/dll/win32/shell32/shfldr_fs.c index 5f7c84b8919..381293d6cbf 100644 --- a/reactos/dll/win32/shell32/shfldr_fs.c +++ b/reactos/dll/win32/shell32/shfldr_fs.c @@ -1357,7 +1357,7 @@ ISFHelper_fnCopyItems (ISFHelper * iface, IShellFolder * pSFFrom, UINT cidl, pszFileName = wcsrchr(pszSrcList, '\\'); pszFileName++; - if (LoadStringW(shell32_hInstance, IDS_COPY_FROM, pszTarget, MAX_PATH - length)) + if (LoadStringW(shell32_hInstance, IDS_COPY_OF, pszTarget, MAX_PATH - length)) { wcscat(szTargetPath, L" "); }