mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 15:29:32 +02:00
Merge pull request #1222 from birarda/master
actually create the QCoreApplication instance
This commit is contained in:
commit
c87446c90f
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