mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +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.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);
|
||||
|
|
Loading…
Reference in a new issue