From 9d2f40cf33350053c21f87860ba058ac3c8a64be Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 23 Nov 2006 21:33:06 +0100 Subject: [PATCH] comctl32/tests: Don't use the NONAMELESS* macros in the tests. --- dlls/comctl32/tests/propsheet.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/dlls/comctl32/tests/propsheet.c b/dlls/comctl32/tests/propsheet.c index 79be3379e7e..db71bfe6caf 100644 --- a/dlls/comctl32/tests/propsheet.c +++ b/dlls/comctl32/tests/propsheet.c @@ -17,9 +17,6 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#define NONAMELESSUNION -#define NONAMELESSSTRUCT - #include #include @@ -81,8 +78,8 @@ static void test_title(void) psp.dwSize = sizeof(psp); psp.dwFlags = 0; psp.hInstance = GetModuleHandleW(NULL); - psp.u.pszTemplate = "prop_page1"; - psp.u2.pszIcon = NULL; + U(psp).pszTemplate = "prop_page1"; + U2(psp).pszIcon = NULL; psp.pfnDlgProc = page_dlg_proc; psp.lParam = 0; @@ -94,7 +91,7 @@ static void test_title(void) psh.pszCaption = "test caption"; psh.nPages = 1; psh.hwndParent = GetDesktopWindow(); - psh.u3.phpage = hpsp; + U3(psh).phpage = hpsp; psh.pfnCallback = sheet_callback; hdlg = (HWND)PropertySheetA(&psh);