summaryrefslogtreecommitdiff
path: root/interface.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-12-04 14:53:41 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2011-12-04 14:53:41 +0100
commit04e538072340d9ba7d0342fe59c755e4c8687775 (patch)
treec13fbc77db368e190c564131648e70cdb4805b26 /interface.c
parent989fa21a21bc68bdb8af3a4421169e65ebee356e (diff)
downloadvdr-04e538072340d9ba7d0342fe59c755e4c8687775.tar.gz
vdr-04e538072340d9ba7d0342fe59c755e4c8687775.tar.bz2
Replaced all calls to sleep() with cCondWait::SleepMs()
Diffstat (limited to 'interface.c')
-rw-r--r--interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/interface.c b/interface.c
index 6ad3c59f..2bfa6c39 100644
--- a/interface.c
+++ b/interface.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: interface.c 1.77 2008/02/10 15:49:15 kls Exp $
+ * $Id: interface.c 2.1 2011/12/04 14:52:38 kls Exp $
*/
#include "interface.h"
@@ -79,7 +79,7 @@ bool cInterface::QueryKeys(cRemote *Remote, cSkinDisplayMenu *DisplayMenu)
DisplayMenu->SetItem(tr("RC code detected!"), 4, false, false);
DisplayMenu->SetItem(tr("Do not press any key..."), 5, false, false);
DisplayMenu->Flush();
- sleep(3);
+ cCondWait::SleepMs(3000);
DisplayMenu->SetItem("", 4, false, false);
DisplayMenu->SetItem("", 5, false, false);