* Fix a typo in the dpkg changelog.
[deb_shairplay.git] / AirTV-Qt / main.cpp
index 0eaf1cede56750276ead02594b64aceab7727c6b..a84258cf7bd2a8cb22e7be37bd7c7fd42343188a 100644 (file)
@@ -1,3 +1,17 @@
+/**
+ *  Copyright (C) 2011-2012  Juho Vähä-Herttua
+ *
+ *  This library is free software; you can redistribute it and/or
+ *  modify it under the terms of the GNU Lesser General Public
+ *  License as published by the Free Software Foundation; either
+ *  version 2.1 of the License, or (at your option) any later version.
+ *
+ *  This library is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ *  Lesser General Public License for more details.
+ */
+
 #include <QtGui>
 #include <QtSingleApplication>
 
@@ -24,7 +38,10 @@ int main(int argc, char *argv[])
     MainApplication m;
     QObject::connect(&m, SIGNAL(quitRequested()), &a, SLOT(quit()));
     QObject::connect(&a, SIGNAL(aboutToQuit()), &m, SLOT(aboutToQuit()));
-    m.start();
 
-    return a.exec();
+    if(m.start()) {
+        return a.exec();
+    } else {
+        return EXIT_FAILURE;
+    }
 }