mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
change macros to call correct version
svn path=/trunk/; revision=22480
This commit is contained in:
parent
a14bed3e15
commit
6067cdbbef
2 changed files with 2 additions and 2 deletions
|
@ -124,7 +124,7 @@ SetLocalSystemTime(HWND hwnd)
|
|||
{
|
||||
SYSTEMTIME Time;
|
||||
|
||||
if (DateTime_GetSystemTime(GetDlgItem(hwnd,
|
||||
if (DateTime_GetSystemtime(GetDlgItem(hwnd,
|
||||
IDC_TIMEPICKER),
|
||||
&Time) == GDT_VALID &&
|
||||
SendMessage(GetDlgItem(hwnd,
|
||||
|
|
|
@ -1133,7 +1133,7 @@ GetLocalSystemTime(HWND hwnd, PSETUPDATA SetupData)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
if (DateTime_GetSystemTime(GetDlgItem(hwnd, IDC_TIMEPICKER), &Time) != GDT_VALID)
|
||||
if (DateTime_GetSystemtime(GetDlgItem(hwnd, IDC_TIMEPICKER), &Time) != GDT_VALID)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue