committing work in progress
[ptas] / zouba / src / main.cpp
index bd3898b..749b6b0 100644 (file)
@@ -14,6 +14,9 @@
 int main(int argc, char *argv[] )
 {
   QApplication app(argc, argv);
+  QCoreApplication::setOrganizationName("ZouBa");
+  QCoreApplication::setOrganizationDomain("zouba.yi.org");
+  QCoreApplication::setOrganizationName("ZouBa");
 
   QMainWindow *mainWindow = new QMainWindow;
   Ui *ui = new Ui;;
@@ -36,27 +39,27 @@ int main(int argc, char *argv[] )
   QObject::connect(
       uiController, SIGNAL( destinationChanged( Location* ) ),
       route, SLOT( setToLocation( Location* ) )
-    );
+      );
 
   QObject::connect(
       uiController, SIGNAL( buttonClicked() ),
       gpsController, SLOT( getGps() )
-    );
+      );
 
   QObject::connect(
       ui, SIGNAL( fakeGpsPressed( const QString & ) ),
       gpsController, SLOT( useFakeGps( const QString & ) )
-    );
+      );
 
   QObject::connect(
       ui, SIGNAL( liveGpsPressed() ),
       gpsController, SLOT( useLiveGps() )
-    );
+      );
 
   QObject::connect(
       route, SIGNAL( busy( bool ) ),
       ui, SLOT( setBusy( bool ) )
-    );
+      );
 
   mainWindow->show();