Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/fm3dll.str
r1004 r1031 36 36 Can't start %s %s 37 37 Your Drag request exceeds the PM limit\n (For compatibility with 16 bit apps)\n The unprocessed objects are still selected in the\n source directory for additional processing\n See Drag & Drop in the help file for additional information 38 38 \"%s\" is the state name used by \"Save directory container state\". Any changes to this state will last only until FM/2 closes or this setting is disabled. Proceed with this change? 39 39 You are here --> x 40 40 Move not allowed - forcing copy -
trunk/dll/fm3str.h
r1004 r1031 18 18 26 Nov 07 GKY Added new readonly in editor & ext path 19 19 10 Feb 08 GKY Add strings to implement bubble help for bitmap menu items 20 28 Jun 08 JBS Add string for warning message for changing/deleting FN2SHUTDOWN state 20 21 21 22 ***********************************************************************/ … … 68 69 #define IDS_CANTSTARTTEXT 35 69 70 #define IDS_EXCEEDPMDRGLMT 36 71 #define IDS_SHUTDOWNSTATE_WARNING 37 70 72 #define IDS_YOUAREHERETEXT 38 71 73 #define IDS_FORCINGCOPYTEXT 39 -
trunk/dll/mainwnd.c
r1029 r1031 2974 2974 CHAR szDir[CCHMAXPATH]; 2975 2975 CHAR szPrefix[STATE_NAME_MAX_BYTES + 2]; 2976 HWND hwndDir, hwndC, hwnd PPSave = NULLHANDLE;2976 HWND hwndDir, hwndC, hwndDir0 = NULLHANDLE, hwndPPSave = NULLHANDLE; 2977 2977 SWP swp, swpO, swpN; 2978 2978 ULONG size, numsaves = 0, x; … … 3232 3232 MPFROMP(szDir), MPFROMLONG(1)); 3233 3233 if (hwndDir) { 3234 3235 if (x == 0) { 3236 hwndDir0 = hwndDir; 3237 } 3234 3238 hwndC = WinWindowFromID(hwndDir, FID_CLIENT); 3235 3239 if (hwndC) { … … 3334 3338 swp.cy, 3335 3339 swp.fl | SWP_MOVE | 3336 SWP_SIZE | SWP_SHOW | SWP_ZORDER |3340 SWP_SIZE | SWP_SHOW | SWP_ZORDER | 3337 3341 SWP_ACTIVATE); 3338 3342 else if (swp.fl & (SWP_HIDE | SWP_MINIMIZE)) { … … 3355 3359 SavePresParams(hwndPPSave, "DirCnr"); 3356 3360 WinDestroyWindow(hwndPPSave); 3361 } 3362 if (hwndDir0) { 3363 WinSetFocus(HWND_DESKTOP, hwndDir0); 3357 3364 } 3358 3365 } … … 4607 4614 if (saymsg(MB_YESNO | MB_DEFBUTTON2 | MB_ICONASTERISK, hwnd, 4608 4615 GetPString(IDS_WARNINGTEXT), 4609 "\"%s\" is the state name used by \"Save directory container state\". Any changes to this state will last only until FM/2 closes or this setting is disabled. Proceed with this change?", szStateName) == MBID_NO)4616 GetPString(IDS_SHUTDOWNSTATE_WARNING), szStateName) == MBID_NO) 4610 4617 fAbortOperation = TRUE; 4611 4618 }
Note:
See TracChangeset
for help on using the changeset viewer.