From 2b1e3e0d2b0b1669515e4092759fd8bdfd827dd3 Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Wed, 1 Mar 2006 23:50:30 +0000 Subject: [PATCH] move clock window down a bit. It was obscuring the group text svn path=/trunk/; revision=21220 --- reactos/dll/cpl/timedate/timedate.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reactos/dll/cpl/timedate/timedate.c b/reactos/dll/cpl/timedate/timedate.c index bbf74b89845..390449c5081 100644 --- a/reactos/dll/cpl/timedate/timedate.c +++ b/reactos/dll/cpl/timedate/timedate.c @@ -131,11 +131,11 @@ DateTimePageProc(HWND hwndDlg, { case WM_INITDIALOG: InitClockWindowClass(); - CreateWindowEx(0, + CreateWindowExW(0, L"ClockWndClass", L"Clock", WS_CHILD | WS_VISIBLE, - 208, 12, 150, 150, + 208, 14, 150, 150, hwndDlg, NULL, hApplet, @@ -674,17 +674,17 @@ VOID SetNTPServer(HWND hwnd) (LPBYTE)szSel, sizeof(szSel)); if (Ret == ERROR_SUCCESS) - MessageBox(NULL, szSel, NULL, 0); + MessageBoxW(NULL, szSel, NULL, 0); else { WCHAR Buff[20]; _itow(Ret, Buff, 10); - //MessageBox(NULL, Buff, NULL, 0); + //MessageBoxW(NULL, Buff, NULL, 0); } RegCloseKey(hKey); - + }