From: Michael Wetherell Date: Fri, 22 Apr 2005 13:41:28 +0000 (+0000) Subject: Use wxMilliSleep instead of the deprecated wxUsleep X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c1edaaeac6ca93b4bc88f99f116d49ed15bfd283?ds=inline Use wxMilliSleep instead of the deprecated wxUsleep git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33824 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mgl/utils.cpp b/src/mgl/utils.cpp index d9e31e8b67..ec8ed4ff07 100644 --- a/src/mgl/utils.cpp +++ b/src/mgl/utils.cpp @@ -51,7 +51,7 @@ void wxBell() void wxSleep(int nSecs) { - wxUsleep(1000 * nSecs); + wxMilliSleep(1000 * nSecs); } void wxMilliSleep(unsigned long milliseconds)