Ignore:
Timestamp:
Feb 14, 2003, 11:07:19 AM (23 years ago)
Author:
sandervl
Message:

DT: Shell file operation updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/shlfolder.c

    r8650 r9805  
    12201220        {
    12211221          if (pPidlOut) *pPidlOut = SHSimpleIDListFromPathA(szDest);
    1222           SHChangeNotifyA( bIsFolder?SHCNE_RENAMEFOLDER:SHCNE_RENAMEITEM, SHCNF_PATHA, szSrc, szDest);
     1222          SHChangeNotify( bIsFolder?SHCNE_RENAMEFOLDER:SHCNE_RENAMEITEM, SHCNF_PATHA, szSrc, szDest);
    12231223          return S_OK;
    12241224        }
     
    14891489
    14901490          pidl = ILCombine(This->absPidl, pidlitem);
    1491           SHChangeNotifyA(SHCNE_MKDIR, SHCNF_IDLIST, pidl, NULL);
     1491          SHChangeNotify(SHCNE_MKDIR, SHCNF_IDLIST, pidl, NULL);
    14921492          SHFree(pidl);
    14931493
     
    15541554            }
    15551555            pidl = ILCombine(This->absPidl, apidl[i]);
    1556             SHChangeNotifyA(SHCNE_RMDIR, SHCNF_IDLIST, pidl, NULL);
     1556            SHChangeNotify(SHCNE_RMDIR, SHCNF_IDLIST, pidl, NULL);
    15571557            SHFree(pidl);
    15581558          }
     
    15681568            }
    15691569            pidl = ILCombine(This->absPidl, apidl[i]);
    1570             SHChangeNotifyA(SHCNE_DELETE, SHCNF_IDLIST, pidl, NULL);
     1570            SHChangeNotify(SHCNE_DELETE, SHCNF_IDLIST, pidl, NULL);
    15711571            SHFree(pidl);
    15721572          }
Note: See TracChangeset for help on using the changeset viewer.