Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/fm3res.rc
r1719 r1742 69 69 28 May 13 SHL Correct typos 70 70 15 Feb 14 GKY Improvements to saymsg2 added accel keys 71 23 Feb 14 GKY Undated one of the error messages in runemf2 to provide the calling line 72 and file. 71 73 72 74 ***********************************************************************/ … … 3375 3377 IDS_INSUFFICIENTMEMORY "Insufficient memory or %u items (%u)" 3376 3378 IDS_DOSQAPPTYPEFAILEDTEXT "DosQAppType failed for %s\n called from %s %d." 3377 IDS_DOSQAPPTYPEFAILEDTEXT2 "The program %s was not found on the PATH or is not an executable file type. "3379 IDS_DOSQAPPTYPEFAILEDTEXT2 "The program %s was not found on the PATH or is not an executable file type.\n runemf2 was called from %s %i" 3378 3380 IDS_DOSQAPPTYPEFAILEDTEXT3 "The drive specified in %s is locked or invalid." 3379 3381 IDS_LOCKEDFILEWARNING "The file %s is locked! Do you wish to unlock it and complete the requested operation" -
trunk/dll/systemf.c
r1720 r1742 42 42 started from fm2 after fm2 has been started with stdout and stderr 43 43 redirected to a file. 44 23 Feb 14 GKY Undated one of the error messages in runemf2 to provide the calling line 45 and file. 44 46 45 47 ***********************************************************************/ … … 893 895 if (rc == ERROR_FILE_NOT_FOUND || rc == ERROR_PATH_NOT_FOUND || 894 896 rc == ERROR_INVALID_EXE_SIGNATURE || rc == ERROR_EXE_MARKED_INVALID) 895 saymsg(MB_OK, HWND_DESKTOP, NullStr, 896 GetPString(IDS_DOSQAPPTYPEFAILEDTEXT2), pszPgm);897 saymsg(MB_OK, HWND_DESKTOP, NullStr,GetPString(IDS_DOSQAPPTYPEFAILEDTEXT2), 898 pszPgm, pszCallingFile,uiLineNumber); 897 899 else if (rc == ERROR_INVALID_DRIVE || rc == ERROR_DRIVE_LOCKED) 898 900 saymsg(MB_OK, HWND_DESKTOP, NullStr, … … 1043 1045 if (rc == ERROR_FILE_NOT_FOUND || rc == ERROR_PATH_NOT_FOUND || 1044 1046 rc == ERROR_INVALID_EXE_SIGNATURE || rc == ERROR_EXE_MARKED_INVALID) 1045 saymsg(MB_OK, HWND_DESKTOP, NullStr, 1046 GetPString(IDS_DOSQAPPTYPEFAILEDTEXT2), pszPgm);1047 saymsg(MB_OK, HWND_DESKTOP, NullStr, GetPString(IDS_DOSQAPPTYPEFAILEDTEXT2), 1048 pszPgm, pszCallingFile,uiLineNumber); 1047 1049 else if (rc == ERROR_INVALID_DRIVE || rc == ERROR_DRIVE_LOCKED) 1048 1050 saymsg(MB_OK, HWND_DESKTOP, NullStr,
Note:
See TracChangeset
for help on using the changeset viewer.
