Module: wine Branch: master Commit: bdc4755d7de7cb0d1b17d6727eddc7d751761b84 URL: http://source.winehq.org/git/wine.git/?a=commit;h=bdc4755d7de7cb0d1b17d6727e...
Author: Vincent Povirk vincent@codeweavers.com Date: Wed Oct 28 15:03:19 2009 -0500
ole32: Remove uses of This->base.ancestorStorage in removeFromTree.
---
dlls/ole32/storage32.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c index 68ca23a..3af5157 100644 --- a/dlls/ole32/storage32.c +++ b/dlls/ole32/storage32.c @@ -2036,7 +2036,7 @@ static HRESULT removeFromTree( setPropertyLink(&parentProperty, typeOfRelation, propertyToDelete.leftChild);
res = StorageImpl_WriteProperty( - This->base.ancestorStorage, + This, parentPropertyId, &parentProperty); if(!res) @@ -2057,7 +2057,7 @@ static HRESULT removeFromTree( do { res = StorageImpl_ReadProperty( - This->base.ancestorStorage, + This, newRightChildParent, &newRightChildParentProperty); if (!res) @@ -2072,7 +2072,7 @@ static HRESULT removeFromTree( newRightChildParentProperty.rightChild = propertyToDelete.rightChild;
res = StorageImpl_WriteProperty( - This->base.ancestorStorage, + This, newRightChildParent, &newRightChildParentProperty); if (!res) @@ -2089,7 +2089,7 @@ static HRESULT removeFromTree( setPropertyLink(&parentProperty, typeOfRelation, propertyToDelete.rightChild);
res = StorageImpl_WriteProperty( - This->base.ancestorStorage, + This, parentPropertyId, &parentProperty); if(!res)