From 8ec28e1130ff2434951167918c22d4eb94e47191 Mon Sep 17 00:00:00 2001 From: Tobias Koenig Date: Sun, 28 Oct 2012 12:56:54 +0100 Subject: [PATCH] Use qWarning instead of qFatal to quit app --- main.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/main.cpp b/main.cpp index 0ea10e3..e9331f9 100644 --- a/main.cpp +++ b/main.cpp @@ -14,7 +14,7 @@ int main(int argc, char **argv) const QStringList arguments = app.arguments(); if (arguments.count() < 2) { - qFatal("Missing QML file argument. Usage: qmlwidgets "); + qWarning("Missing QML file argument. Usage: qmlwidgets "); return -1; } -- 1.7.2.5