mirror of
https://github.com/overte-org/overte.git
synced 2025-07-10 18:58:37 +02:00
Fixed spelling mistake
This commit is contained in:
parent
7c797449ab
commit
2015861e13
1 changed files with 3 additions and 3 deletions
|
@ -406,13 +406,13 @@ Application::~Application() {
|
||||||
params.errorCallbackReceiver = &loop;
|
params.errorCallbackReceiver = &loop;
|
||||||
params.jsonCallbackMethod = "quit";
|
params.jsonCallbackMethod = "quit";
|
||||||
params.errorCallbackMethod = "quit";
|
params.errorCallbackMethod = "quit";
|
||||||
// In case something goes wrong, we also setup a timer so that the delai is not greater than DELAI_TIME
|
// In case something goes wrong, we also setup a timer so that the delai is not greater than DELAY_TIME
|
||||||
int DELAI_TIME = 1000;
|
int DELAY_TIME = 1000;
|
||||||
QTimer timer;
|
QTimer timer;
|
||||||
connect(&timer, &QTimer::timeout, &loop, &QEventLoop::quit);
|
connect(&timer, &QTimer::timeout, &loop, &QEventLoop::quit);
|
||||||
// Now we can log it
|
// Now we can log it
|
||||||
UserActivityLogger::getInstance().close(params);
|
UserActivityLogger::getInstance().close(params);
|
||||||
timer.start(DELAI_TIME);
|
timer.start(DELAY_TIME);
|
||||||
loop.exec();
|
loop.exec();
|
||||||
|
|
||||||
qInstallMessageHandler(NULL);
|
qInstallMessageHandler(NULL);
|
||||||
|
|
Loading…
Reference in a new issue