]> git.saurik.com Git - wxWidgets.git/commitdiff
Use wxMilliSleep instead of the deprecated wxUsleep
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Fri, 22 Apr 2005 13:41:28 +0000 (13:41 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Fri, 22 Apr 2005 13:41:28 +0000 (13:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33824 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mgl/utils.cpp

index d9e31e8b67fc8d2fc9c9f29a4ae3af9e0a50eab3..ec8ed4ff07c3a5a07c0302f58666318a5438f79c 100644 (file)
@@ -51,7 +51,7 @@ void wxBell()
 
 void wxSleep(int nSecs)
 {
-    wxUsleep(1000 * nSecs);
+    wxMilliSleep(1000 * nSecs);
 }
 
 void wxMilliSleep(unsigned long milliseconds)