From 2e47f002aff970ee1dd0a22c88febd5682ed2482 Mon Sep 17 00:00:00 2001 From: senator Date: Mon, 24 Mar 2008 14:21:34 +0000 Subject: win32 compatibility for sleep function in sendrecieve.cc --- client/sendrecieve.cc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'client/sendrecieve.cc') diff --git a/client/sendrecieve.cc b/client/sendrecieve.cc index 8b4732b..0a664eb 100644 --- a/client/sendrecieve.cc +++ b/client/sendrecieve.cc @@ -35,6 +35,13 @@ #include #include +#ifdef HOST_WIN32 +#include +#define sleep(x) Sleep(x * 1000) +#else +#include +#endif + SendRecieve::SendRecieve() : QObject() { @@ -63,7 +70,7 @@ void SendRecieve::tcpDisconnect() tcpConnected = TCP_DISCONNECTED; return; } - usleep(5000); + sleep(1); printf("ERROR!!! Couldn't connect to host!\n"); qApp->processEvents(); } -- cgit v1.2.3