mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +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;
|
SYSTEMTIME Time;
|
||||||
|
|
||||||
if (DateTime_GetSystemTime(GetDlgItem(hwnd,
|
if (DateTime_GetSystemtime(GetDlgItem(hwnd,
|
||||||
IDC_TIMEPICKER),
|
IDC_TIMEPICKER),
|
||||||
&Time) == GDT_VALID &&
|
&Time) == GDT_VALID &&
|
||||||
SendMessage(GetDlgItem(hwnd,
|
SendMessage(GetDlgItem(hwnd,
|
||||||
|
|
|
@ -1133,7 +1133,7 @@ GetLocalSystemTime(HWND hwnd, PSETUPDATA SetupData)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DateTime_GetSystemTime(GetDlgItem(hwnd, IDC_TIMEPICKER), &Time) != GDT_VALID)
|
if (DateTime_GetSystemtime(GetDlgItem(hwnd, IDC_TIMEPICKER), &Time) != GDT_VALID)
|
||||||
{
|
{
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue