comdlg32/tests: Make ensure_zero_events_() static.
This commit is contained in:
parent
7057d37b40
commit
3b4cc4464d
|
@ -848,7 +848,7 @@ static void test_basics(void)
|
||||||
ok(!ref, "Got refcount %d, should have been released.\n", ref);
|
ok(!ref, "Got refcount %d, should have been released.\n", ref);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ensure_zero_events_(const char *file, int line, IFileDialogEventsImpl *impl)
|
static void ensure_zero_events_(const char *file, int line, IFileDialogEventsImpl *impl)
|
||||||
{
|
{
|
||||||
ok_(file, line)(!impl->OnFileOk, "OnFileOk: %d\n", impl->OnFileOk);
|
ok_(file, line)(!impl->OnFileOk, "OnFileOk: %d\n", impl->OnFileOk);
|
||||||
ok_(file, line)(!impl->OnFolderChanging, "OnFolderChanging: %d\n", impl->OnFolderChanging);
|
ok_(file, line)(!impl->OnFolderChanging, "OnFolderChanging: %d\n", impl->OnFolderChanging);
|
||||||
|
|
Loading…
Reference in New Issue