ole32: Rename property variables in StorageInternalImpl_Construct.

This commit is contained in:
Vincent Povirk 2009-11-12 15:03:09 -06:00 committed by Alexandre Julliard
parent f8ca09c0b8
commit 3aa8cdec7b
1 changed files with 3 additions and 3 deletions

View File

@ -3933,7 +3933,7 @@ static const IStorageVtbl Storage32InternalImpl_Vtbl =
static StorageInternalImpl* StorageInternalImpl_Construct(
StorageImpl* ancestorStorage,
DWORD openFlags,
ULONG rootPropertyIndex)
ULONG storageDirEntry)
{
StorageInternalImpl* newStorage;
@ -3959,9 +3959,9 @@ static StorageInternalImpl* StorageInternalImpl_Construct(
newStorage->base.ancestorStorage = ancestorStorage;
/*
* Keep the index of the root property set for this storage,
* Keep a reference to the directory entry of this storage
*/
newStorage->base.storageDirEntry = rootPropertyIndex;
newStorage->base.storageDirEntry = storageDirEntry;
return newStorage;
}