summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/activeqt/control/qaxservermain.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/activeqt/control/qaxservermain.cpp b/src/activeqt/control/qaxservermain.cpp
index 07156f4..382ead1 100644
--- a/src/activeqt/control/qaxservermain.cpp
+++ b/src/activeqt/control/qaxservermain.cpp
@@ -53,11 +53,11 @@ static bool qAxActivity = false;
static HANDLE hEventShutdown;
#ifdef QT_DEBUG
-QT_STATIC_CONST DWORD dwTimeOut = 1000;
-QT_STATIC_CONST DWORD dwPause = 500;
+static const DWORD dwTimeOut = 1000;
+static const DWORD dwPause = 500;
#else
-QT_STATIC_CONST DWORD dwTimeOut = 5000; // time for EXE to be idle before shutting down
-QT_STATIC_CONST DWORD dwPause = 1000; // time to wait for threads to finish up
+static const DWORD dwTimeOut = 5000; // time for EXE to be idle before shutting down
+static const DWORD dwPause = 1000; // time to wait for threads to finish up
#endif
extern HANDLE hEventShutdown;