Vincent Povirk : ole32: Rename property variables in StorageInternalImpl_Construct.

Alexandre Julliard julliard at winehq.org
Tue Nov 17 09:28:16 CST 2009


Module: wine
Branch: master
Commit: 3aa8cdec7b7ea4c6d9717cc8a772f5dd0a502a18
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3aa8cdec7b7ea4c6d9717cc8a772f5dd0a502a18

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Thu Nov 12 15:03:09 2009 -0600

ole32: Rename property variables in StorageInternalImpl_Construct.

---

 dlls/ole32/storage32.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c
index fc5872c..3210f55 100644
--- a/dlls/ole32/storage32.c
+++ b/dlls/ole32/storage32.c
@@ -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;
   }




More information about the wine-cvs mailing list