riched20: Add missing void to parameter list.

This commit is contained in:
Mike McCormack 2006-11-10 15:42:15 +09:00 committed by Alexandre Julliard
parent 6ea5a664dd
commit c6e25b54c9
1 changed files with 8 additions and 8 deletions

View File

@ -875,7 +875,7 @@ static void test_EM_SETUNDOLIMIT(void)
DestroyWindow(hwndRichEdit); DestroyWindow(hwndRichEdit);
} }
static void test_ES_PASSWORD() static void test_ES_PASSWORD(void)
{ {
/* This isn't hugely testable, so we're just going to run it through it's paces. */ /* This isn't hugely testable, so we're just going to run it through it's paces. */
@ -901,7 +901,7 @@ static void test_ES_PASSWORD()
DestroyWindow(hwndRichEdit); DestroyWindow(hwndRichEdit);
} }
static void test_EM_SETTEXTEX() static void test_EM_SETTEXTEX(void)
{ {
HWND hwndRichEdit = new_richedit(NULL); HWND hwndRichEdit = new_richedit(NULL);
SETTEXTEX setText; SETTEXTEX setText;
@ -1064,7 +1064,7 @@ static void test_EM_GETLIMITTEXT(void)
DestroyWindow(hwndRichEdit); DestroyWindow(hwndRichEdit);
} }
static void test_WM_SETFONT() static void test_WM_SETFONT(void)
{ {
/* There is no invalid input or error conditions for this function. /* There is no invalid input or error conditions for this function.
* NULL wParam and lParam just fall back to their default values * NULL wParam and lParam just fall back to their default values