Fixed a simple bug in the implementation of the ShellView objects.

This commit is contained in:
Francis Beaudet 1999-03-10 13:32:08 +00:00 committed by Alexandre Julliard
parent f8fe2744ee
commit 81d8613a2b
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ LPDATAOBJECT IDataObject_Constructor(HWND hwndOwner, LPSHELLFOLDER psf, LPITEMID
dto->ref=1;
dto->lpvtbl=&dtovt;
dto->psf=psf;
dto->pidl=ILClone(psf->mpidl); /* FIXME:add a reference and don't copy*/
dto->pidl=ILClone(psf->pMyPidl); /* FIXME:add a reference and don't copy*/
/* fill the ItemID List List */
dto->lpill = IDLList_Constructor (8);