From ce52395a083c23cb68aa5b642f740f7fd82317ac Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 7 Nov 2013 15:06:11 -0800 Subject: [PATCH] actually create the QCoreApplication instance --- assignment-client/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assignment-client/src/main.cpp b/assignment-client/src/main.cpp index 10b32f901f..6f8cd83784 100644 --- a/assignment-client/src/main.cpp +++ b/assignment-client/src/main.cpp @@ -38,7 +38,7 @@ int argc = 0; char** argv = NULL; void childClient() { - QCoreApplication(::argc, ::argv); + QCoreApplication application(::argc, ::argv); // set the logging target to the the CHILD_TARGET_NAME Logging::setTargetName(CHILD_TARGET_NAME);