6a0cb8c9f55f349b27e5614af62ab9e3964dd1df
[googlelatitude] / src / settings / main.cpp
1 #include <QApplication>
2
3 #include "settings.h"
4
5 int main(int argc, char *argv[]) {
6     QApplication app(argc, argv);
7     QCoreApplication::setOrganizationName("linfati");
8     QCoreApplication::setOrganizationDomain("linfati.com");
9     QCoreApplication::setApplicationName("GoogleLatitude");
10
11     Settings *settings = new Settings();
12     settings->setWindowModality(Qt::ApplicationModal);
13     settings->show();
14
15     return app.exec();
16 }
17
18 /*
19  TODO:
20  on auth error -> stop gps
21  on new pos, only set it
22  send new pos every 120s, only if is diferent
23  no n900 -> por ip
24  */
25