ole32: Rename property variables in StorageInternalImpl_Construct.
This commit is contained in:
parent
f8ca09c0b8
commit
3aa8cdec7b
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue