Commit 83301929 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

ole32/tests: Fix spelling of a variable name.

parent ea8a8804
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment