replace _sleep with Sleep to fix the gcc 4.x build

svn path=/trunk/; revision=25606
This commit is contained in:
Christoph von Wittich 2007-01-23 21:48:31 +00:00
parent 5c2e4f088a
commit 4fc7465a8f
4 changed files with 4 additions and 4 deletions

View file

@ -715,7 +715,7 @@ CurrencyOptsSetProc(HWND hwndDlg,
InitNegCurrencySumCB(hwndDlg);
/* FIXME: */
_sleep(15);
Sleep(15);
UpdateCurrencyLocaleSamples(hwndDlg, LOCALE_USER_DEFAULT);
}
}

View file

@ -596,7 +596,7 @@ DateOptsSetProc(HWND hwndDlg,
if(!SetLongDateFormat(hwndDlg)) break;
InitShortDateCB(hwndDlg);
/* FIXME: */
_sleep(15);
Sleep(15);
UpdateDateLocaleSamples(hwndDlg, LOCALE_USER_DEFAULT);
}
}

View file

@ -837,7 +837,7 @@ NumsOptsSetProc(HWND hwndDlg,
InitNegNumFmtCB(hwndDlg);
/* FIXME: */
_sleep(15);
Sleep(15);
/* Update sum format samples */
UpdateNumSamples(hwndDlg, LOCALE_USER_DEFAULT);
}

View file

@ -523,7 +523,7 @@ TimeOptsSetProc(HWND hwndDlg,
/* FIXME: */
_sleep(15);
Sleep(15);
UpdateTimeLocaleSamples(hwndDlg, LOCALE_USER_DEFAULT);
}
}