mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 23:14:34 +02:00
actually create the QCoreApplication instance
This commit is contained in:
parent
40dec7c05f
commit
ce52395a08
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ int argc = 0;
|
||||||
char** argv = NULL;
|
char** argv = NULL;
|
||||||
|
|
||||||
void childClient() {
|
void childClient() {
|
||||||
QCoreApplication(::argc, ::argv);
|
QCoreApplication application(::argc, ::argv);
|
||||||
|
|
||||||
// set the logging target to the the CHILD_TARGET_NAME
|
// set the logging target to the the CHILD_TARGET_NAME
|
||||||
Logging::setTargetName(CHILD_TARGET_NAME);
|
Logging::setTargetName(CHILD_TARGET_NAME);
|
||||||
|
|
Loading…
Reference in a new issue