Changeset 1402 for trunk/dll/treecnr.c
- Timestamp:
- Mar 14, 2009, 6:17:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/treecnr.c
r1400 r1402 65 65 08 Mar 09 GKY Additional strings move to PCSZs in init.c 66 66 08 Mar 09 GKY Add WriteDetailsSwitches and use LoadDetailsSwitches to replace in line code 67 14 Mar 09 GKY Prevent execution of UM_SHOWME while drive scan is occuring 67 68 68 69 ***********************************************************************/ … … 624 625 Fortify_BecomeOwner(mp1); 625 626 # endif 627 if (StubbyScanCount != 0) { //prevent treeswitch from hanging fm2 during startup GKY 3-14-09 628 DosSleep(50); 629 PostMsg(hwndTree, UM_SHOWME, mp1, MPVOID); 630 } 626 631 dcd = INSTDATA(hwnd); 627 632 if (dcd) { … … 1464 1469 if (!DrgAccessDraginfo(pDInfo)) { 1465 1470 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 1466 "DrgAccessDraginfo");1471 PCSZ_DRGACCESSDRAGINFO); 1467 1472 return (MRFROM2SHORT(DOR_NODROP, 0)); /* Drop not valid */ 1468 1473 } … … 1593 1598 if (li->type == DID_ERROR) 1594 1599 Win_Error(hwnd, HWND_DESKTOP, pszSrcFile, __LINE__, 1595 "Drag & Drop Dialog");1600 GetPString(IDS_DRAGDROPDIALOGTEXT)); 1596 1601 if (!li->type) { 1597 1602 FreeListInfo(li); … … 2088 2093 CHAR s[33]; 2089 2094 2090 strcpy(s, "ICON");2095 strcpy(s, PCSZ_ICON); 2091 2096 PrfQueryProfileData(fmprof, 2092 2097 appname, … … 2095 2100 if (flWindowAttr & CV_DETAIL) { 2096 2101 if (IsRoot(pci->pszFileName)) 2097 strcpy(s, "TREE");2102 strcpy(s, PCSZ_TREE); 2098 2103 else 2099 strcpy(s, "DETAILS");2104 strcpy(s, Details); 2100 2105 } 2101 2106 OpenObject(pci->pszFileName, s, dcd->hwndFrame);
Note:
See TracChangeset
for help on using the changeset viewer.