From 2015861e130fa40c17f101f2ae6f0543f0e3cc50 Mon Sep 17 00:00:00 2001 From: Atlante45 Date: Mon, 30 Jun 2014 20:10:53 -0700 Subject: [PATCH] Fixed spelling mistake --- interface/src/Application.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 9fcce81567..d79c30cacb 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -406,13 +406,13 @@ Application::~Application() { params.errorCallbackReceiver = &loop; params.jsonCallbackMethod = "quit"; params.errorCallbackMethod = "quit"; - // In case something goes wrong, we also setup a timer so that the delai is not greater than DELAI_TIME - int DELAI_TIME = 1000; + // In case something goes wrong, we also setup a timer so that the delai is not greater than DELAY_TIME + int DELAY_TIME = 1000; QTimer timer; connect(&timer, &QTimer::timeout, &loop, &QEventLoop::quit); // Now we can log it UserActivityLogger::getInstance().close(params); - timer.start(DELAI_TIME); + timer.start(DELAY_TIME); loop.exec(); qInstallMessageHandler(NULL);