Commit 5d898e3e authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

comdlg32/tests: Fix some typos.

parent 7b086047
...@@ -241,7 +241,7 @@ static void test_create_view_window2(void) ...@@ -241,7 +241,7 @@ static void test_create_view_window2(void)
ofn.lStructSize = sizeof(ofn); ofn.lStructSize = sizeof(ofn);
ofn.lpstrFile = filename; ofn.lpstrFile = filename;
ofn.nMaxFile = 1042; ofn.nMaxFile = 1024;
ofn.lpfnHook = create_view_window2_hook; ofn.lpfnHook = create_view_window2_hook;
ofn.Flags = OFN_ENABLEHOOK | OFN_EXPLORER; ofn.Flags = OFN_ENABLEHOOK | OFN_EXPLORER;
ret = GetOpenFileNameA(&ofn); ret = GetOpenFileNameA(&ofn);
...@@ -258,7 +258,7 @@ static void test_create_view_template(void) ...@@ -258,7 +258,7 @@ static void test_create_view_template(void)
ofn.lStructSize = sizeof(ofn); ofn.lStructSize = sizeof(ofn);
ofn.lpstrFile = filename; ofn.lpstrFile = filename;
ofn.nMaxFile = 1042; ofn.nMaxFile = 1024;
ofn.lpfnHook = (LPOFNHOOKPROC)template_hook; ofn.lpfnHook = (LPOFNHOOKPROC)template_hook;
ofn.Flags = OFN_ENABLEHOOK | OFN_EXPLORER| OFN_ENABLETEMPLATE; ofn.Flags = OFN_ENABLEHOOK | OFN_EXPLORER| OFN_ENABLETEMPLATE;
ofn.hInstance = GetModuleHandleA(NULL); ofn.hInstance = GetModuleHandleA(NULL);
...@@ -384,7 +384,7 @@ static void test_resize(void) ...@@ -384,7 +384,7 @@ static void test_resize(void)
int i; int i;
ofn.lpstrFile = filename; ofn.lpstrFile = filename;
ofn.nMaxFile = 1042; ofn.nMaxFile = 1024;
ofn.lpfnHook = (LPOFNHOOKPROC) resize_template_hook; ofn.lpfnHook = (LPOFNHOOKPROC) resize_template_hook;
ofn.hInstance = GetModuleHandle(NULL); ofn.hInstance = GetModuleHandle(NULL);
ofn.lpTemplateName = "template_sz"; ofn.lpTemplateName = "template_sz";
......
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