Changeset 9805 for trunk/src/shell32/shlfolder.c
- Timestamp:
 - Feb 14, 2003, 11:07:19 AM (23 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/shell32/shlfolder.c (modified) (4 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/shell32/shlfolder.c
r8650 r9805 1220 1220 { 1221 1221 if (pPidlOut) *pPidlOut = SHSimpleIDListFromPathA(szDest); 1222 SHChangeNotify A( bIsFolder?SHCNE_RENAMEFOLDER:SHCNE_RENAMEITEM, SHCNF_PATHA, szSrc, szDest);1222 SHChangeNotify( bIsFolder?SHCNE_RENAMEFOLDER:SHCNE_RENAMEITEM, SHCNF_PATHA, szSrc, szDest); 1223 1223 return S_OK; 1224 1224 } … … 1489 1489 1490 1490 pidl = ILCombine(This->absPidl, pidlitem); 1491 SHChangeNotify A(SHCNE_MKDIR, SHCNF_IDLIST, pidl, NULL);1491 SHChangeNotify(SHCNE_MKDIR, SHCNF_IDLIST, pidl, NULL); 1492 1492 SHFree(pidl); 1493 1493 … … 1554 1554 } 1555 1555 pidl = ILCombine(This->absPidl, apidl[i]); 1556 SHChangeNotify A(SHCNE_RMDIR, SHCNF_IDLIST, pidl, NULL);1556 SHChangeNotify(SHCNE_RMDIR, SHCNF_IDLIST, pidl, NULL); 1557 1557 SHFree(pidl); 1558 1558 } … … 1568 1568 } 1569 1569 pidl = ILCombine(This->absPidl, apidl[i]); 1570 SHChangeNotify A(SHCNE_DELETE, SHCNF_IDLIST, pidl, NULL);1570 SHChangeNotify(SHCNE_DELETE, SHCNF_IDLIST, pidl, NULL); 1571 1571 SHFree(pidl); 1572 1572 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  