From abcdb32c18bc21893ed15c330a11e31c7637d46b Mon Sep 17 00:00:00 2001 From: Filippo Cucchetto Date: Wed, 23 Mar 2016 22:52:26 +0100 Subject: [PATCH] Removed spaces --- examples/helloworld/main.nim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/helloworld/main.nim b/examples/helloworld/main.nim index 1936404..8f94946 100644 --- a/examples/helloworld/main.nim +++ b/examples/helloworld/main.nim @@ -5,7 +5,7 @@ import typeinfo proc mainProc() = var app = newQApplication() defer: app.delete() - + var engine = newQQmlApplicationEngine() defer: engine.delete() @@ -15,4 +15,3 @@ proc mainProc() = when isMainModule: mainProc() GC_fullcollect() -