mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
ole32/tests: Fix spelling of a variable name.
Signed-off-by: Francois Gouget <fgouget@free.fr> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ea8a88047c
commit
8330192951
1 changed files with 7 additions and 7 deletions
|
@ -4620,7 +4620,7 @@ static void test_OleCreateStaticFromData(void)
|
|||
IOleObject *ole_obj = NULL;
|
||||
IStorage *storage;
|
||||
ILockBytes *ilb;
|
||||
IPersist *presist;
|
||||
IPersist *persist;
|
||||
CLSID clsid;
|
||||
STATSTG statstg;
|
||||
int enumerated_streams, matched_streams;
|
||||
|
@ -4699,9 +4699,9 @@ static void test_OleCreateStaticFromData(void)
|
|||
hr = OleCreateStaticFromData(&DataObject, &IID_IOleObject, OLERENDER_FORMAT,
|
||||
dib_fmt, NULL, storage, (void **)&ole_obj);
|
||||
ok(hr == S_OK, "OleCreateStaticFromData failed: 0x%08x.\n", hr);
|
||||
hr = IOleObject_QueryInterface(ole_obj, &IID_IPersist, (void **)&presist);
|
||||
hr = IOleObject_QueryInterface(ole_obj, &IID_IPersist, (void **)&persist);
|
||||
ok(hr == S_OK, "IOleObject_QueryInterface failed: 0x%08x.\n", hr);
|
||||
hr = IPersist_GetClassID(presist, &clsid);
|
||||
hr = IPersist_GetClassID(persist, &clsid);
|
||||
ok(hr == S_OK, "IPersist_GetClassID failed: 0x%08x.\n", hr);
|
||||
ok(IsEqualCLSID(&clsid, &CLSID_Picture_Dib), "Got wrong clsid: %s, expected: %s.\n",
|
||||
wine_dbgstr_guid(&clsid), wine_dbgstr_guid(&CLSID_Picture_Dib));
|
||||
|
@ -4717,7 +4717,7 @@ static void test_OleCreateStaticFromData(void)
|
|||
ok(enumerated_streams == stg_def_dib.stream_count, "created %d != def streams %d\n",
|
||||
enumerated_streams, stg_def_dib.stream_count);
|
||||
ReleaseStgMedium(&stgmed);
|
||||
IPersist_Release(presist);
|
||||
IPersist_Release(persist);
|
||||
IStorage_Release(storage);
|
||||
IOleObject_Release(ole_obj);
|
||||
|
||||
|
@ -4733,9 +4733,9 @@ static void test_OleCreateStaticFromData(void)
|
|||
hr = OleCreateStaticFromData(&DataObject, &IID_IOleObject, OLERENDER_FORMAT,
|
||||
emf_fmt, NULL, storage, (void **)&ole_obj);
|
||||
ok(hr == S_OK, "OleCreateStaticFromData failed: 0x%08x.\n", hr);
|
||||
hr = IOleObject_QueryInterface(ole_obj, &IID_IPersist, (void **)&presist);
|
||||
hr = IOleObject_QueryInterface(ole_obj, &IID_IPersist, (void **)&persist);
|
||||
ok(hr == S_OK, "IOleObject_QueryInterface failed: 0x%08x.\n", hr);
|
||||
hr = IPersist_GetClassID(presist, &clsid);
|
||||
hr = IPersist_GetClassID(persist, &clsid);
|
||||
ok(hr == S_OK, "IPersist_GetClassID failed: 0x%08x.\n", hr);
|
||||
ok(IsEqualCLSID(&clsid, &CLSID_Picture_EnhMetafile), "Got wrong clsid: %s, expected: %s.\n",
|
||||
wine_dbgstr_guid(&clsid), wine_dbgstr_guid(&CLSID_Picture_EnhMetafile));
|
||||
|
@ -4751,7 +4751,7 @@ static void test_OleCreateStaticFromData(void)
|
|||
ok(enumerated_streams == stg_def_emf.stream_count, "created %d != def streams %d\n",
|
||||
enumerated_streams, stg_def_emf.stream_count);
|
||||
ReleaseStgMedium(&stgmed);
|
||||
IPersist_Release(presist);
|
||||
IPersist_Release(persist);
|
||||
IStorage_Release(storage);
|
||||
IOleObject_Release(ole_obj);
|
||||
|
||||
|
|
Loading…
Reference in a new issue