[TASKMGR] Use the correct title string for create new task dialog. Spotted by Jared Smudde. CORE-11129

svn path=/trunk/; revision=71350
This commit is contained in:
Robert Naumann 2016-05-18 08:30:45 +00:00
parent f02a81b1d9
commit 0b4cad0a63

View file

@ -44,7 +44,7 @@ void TaskManager_OnFileNew(void)
/* 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);
}