[DQml] Use QApplication instead of QGuiApplication

This commit is contained in:
Filippo Cucchetto 2015-05-10 15:47:51 +02:00
parent 3258674762
commit dd991bfece
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ void main()
{
try
{
auto app = new QGuiApplication();
auto app = new QApplication();
scope(exit) destroy(app);
auto contact = new Contact();