Changeset 1402 for trunk/dll/dirsize.c
- Timestamp:
- Mar 14, 2009, 6:17:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/dirsize.c
r1400 r1402 182 182 MPFROMLONG(1)); 183 183 if (!pci) { 184 Win_Error(hwndCnr, HWND_DESKTOP, pszSrcFile, __LINE__, "CM_ALLOCRECORD");184 Win_Error(hwndCnr, HWND_DESKTOP, pszSrcFile, __LINE__, PCSZ_CM_ALLOCRECORD); 185 185 xfree(pffbArray, pszSrcFile, __LINE__); 186 186 return FALSE; … … 894 894 CHAR s[33]; 895 895 896 strcpy(s, "ICON");896 strcpy(s, PCSZ_ICON); 897 897 PrfQueryProfileData(fmprof, appname, "DirflWindowAttr", 898 898 (PVOID) & flWindowAttr, &size); 899 899 if (flWindowAttr & CV_DETAIL) { 900 900 if (IsRoot(szFileName)) 901 strcpy(s, "TREE");901 strcpy(s, PCSZ_TREE); 902 902 else 903 strcpy(s, "DETAILS");903 strcpy(s, Details); 904 904 } 905 905 OpenObject(szFileName, s, hwnd);
Note:
See TracChangeset
for help on using the changeset viewer.