Author: rnaumann Date: Wed May 18 08:30:45 2016 New Revision: 71350
URL: http://svn.reactos.org/svn/reactos?rev=71350&view=rev Log: [TASKMGR] Use the correct title string for create new task dialog. Spotted by Jared Smudde. CORE-11129
Modified: trunk/reactos/base/applications/taskmgr/run.c
Modified: trunk/reactos/base/applications/taskmgr/run.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/taskmgr/r... ============================================================================== --- trunk/reactos/base/applications/taskmgr/run.c [iso-8859-1] (original) +++ trunk/reactos/base/applications/taskmgr/run.c [iso-8859-1] Wed May 18 08:30:45 2016 @@ -44,7 +44,7 @@
/* NOTE - don't check whether running on win 9x or NT, let's just assume that a unicode build only runs on NT */ - RunFileDlg(hMainWnd, hIcon, NULL, NULL, szText, RFF_CALCDIRECTORY); + RunFileDlg(hMainWnd, hIcon, NULL, szTitle, szText, RFF_CALCDIRECTORY);
DeleteObject(hIcon); }