From dd991bfece64d1a892c133f1de4db823c4b466d2 Mon Sep 17 00:00:00 2001 From: Filippo Cucchetto Date: Sun, 10 May 2015 15:47:51 +0200 Subject: [PATCH] [DQml] Use QApplication instead of QGuiApplication --- D/Examples/SlotsAndProperties/main.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/D/Examples/SlotsAndProperties/main.d b/D/Examples/SlotsAndProperties/main.d index e750c2d..ca52808 100644 --- a/D/Examples/SlotsAndProperties/main.d +++ b/D/Examples/SlotsAndProperties/main.d @@ -6,7 +6,7 @@ void main() { try { - auto app = new QGuiApplication(); + auto app = new QApplication(); scope(exit) destroy(app); auto contact = new Contact();