ole32: Fix spelling of a couple of local variables.

This commit is contained in:
Francois Gouget 2006-09-07 20:00:30 +02:00 committed by Alexandre Julliard
parent 3c336ab0cf
commit 19be7545e5
1 changed files with 6 additions and 6 deletions

View File

@ -187,7 +187,7 @@ static void StgStreamImpl_OpenBlockChain(
StgStreamImpl* This) StgStreamImpl* This)
{ {
StgProperty curProperty; StgProperty curProperty;
BOOL readSucessful; BOOL readSuccessful;
/* /*
* Make sure no old object is left over. * Make sure no old object is left over.
@ -207,11 +207,11 @@ static void StgStreamImpl_OpenBlockChain(
/* /*
* Read the information from the property. * Read the information from the property.
*/ */
readSucessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage, readSuccessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
This->ownerProperty, This->ownerProperty,
&curProperty); &curProperty);
if (readSucessful) if (readSuccessful)
{ {
This->streamSize = curProperty.size; This->streamSize = curProperty.size;
@ -803,7 +803,7 @@ static HRESULT WINAPI StgStreamImpl_Stat(
StgStreamImpl* const This=(StgStreamImpl*)iface; StgStreamImpl* const This=(StgStreamImpl*)iface;
StgProperty curProperty; StgProperty curProperty;
BOOL readSucessful; BOOL readSuccessful;
TRACE("%p %p %ld\n", This, pstatstg, grfStatFlag); TRACE("%p %p %ld\n", This, pstatstg, grfStatFlag);
@ -817,11 +817,11 @@ static HRESULT WINAPI StgStreamImpl_Stat(
/* /*
* Read the information from the property. * Read the information from the property.
*/ */
readSucessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage, readSuccessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
This->ownerProperty, This->ownerProperty,
&curProperty); &curProperty);
if (readSucessful) if (readSuccessful)
{ {
StorageUtl_CopyPropertyToSTATSTG(pstatstg, StorageUtl_CopyPropertyToSTATSTG(pstatstg,
&curProperty, &curProperty,