Changeset 762 for trunk/dll/misc.c
- Timestamp:
- Aug 5, 2007, 1:19:21 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/misc.c
r756 r762 514 514 pfi->flTitle = CFA_CENTER | CFA_FITITLEREADONLY; 515 515 pfi->pTitleData = GetPString(IDS_LNAME); 516 pfi->offStruct = FIELDOFFSET(CNRITEM, pszLong name);516 pfi->offStruct = FIELDOFFSET(CNRITEM, pszLongName); 517 517 518 518 // Store the current pfi value as that will be used to indicate the … … 740 740 return (MRESULT) TRUE; 741 741 } 742 else if (pfi && pfi->offStruct == FIELDOFFSET(CNRITEM, pszLong name)) {742 else if (pfi && pfi->offStruct == FIELDOFFSET(CNRITEM, pszLongName)) { 743 743 744 744 CHAR longname[CCHMAXPATHCOMP]; … … 749 749 longname[retlen + 1] = 0; 750 750 //chop_at_crnl(longname); 751 pci->pszLong name = xrealloc(pci->pszLongname, retlen + 1, pszSrcFile, __LINE__);751 pci->pszLongName = xrealloc(pci->pszLongName, retlen + 1, pszSrcFile, __LINE__); 752 752 WinSetWindowText(hwndMLE, longname); 753 753 pci->pszFileName = xrealloc(pci->pszFileName, retlen + 1, pszSrcFile, __LINE__);
Note:
See TracChangeset
for help on using the changeset viewer.