riched20/tests: Fix function names in two ok() messages.
Signed-off-by: Mathew Hodson <mathew.hodson@gmail.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
741ec8ca75
commit
3808b61967
|
@ -992,10 +992,10 @@ static void test_TxGetScroll(void)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ret = ITextServices_TxGetHScroll(txtserv, NULL, NULL, NULL, NULL, NULL);
|
ret = ITextServices_TxGetHScroll(txtserv, NULL, NULL, NULL, NULL, NULL);
|
||||||
ok(ret == S_OK, "ITextSerHices_GetVScroll failed: 0x%08x.\n", ret);
|
ok(ret == S_OK, "ITextServices_TxGetHScroll failed: 0x%08x.\n", ret);
|
||||||
|
|
||||||
ret = ITextServices_TxGetVScroll(txtserv, NULL, NULL, NULL, NULL, NULL);
|
ret = ITextServices_TxGetVScroll(txtserv, NULL, NULL, NULL, NULL, NULL);
|
||||||
ok(ret == S_OK, "ITextServices_GetVScroll failed: 0x%08x.\n", ret);
|
ok(ret == S_OK, "ITextServices_TxGetVScroll failed: 0x%08x.\n", ret);
|
||||||
|
|
||||||
ITextServices_Release(txtserv);
|
ITextServices_Release(txtserv);
|
||||||
ITextHost_Release(host);
|
ITextHost_Release(host);
|
||||||
|
|
Loading…
Reference in New Issue