move clock window down a bit. It was obscuring the group text

svn path=/trunk/; revision=21220
This commit is contained in:
Ged Murphy 2006-03-01 23:50:30 +00:00
parent ef1aa9aeda
commit 2b1e3e0d2b

View file

@ -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);
}