Streamlined the settings storage We now support an implicit fossil executable living in QCoreApplication::applicationDirPath() or in the system path, unless the user has provided an override FossilOrigin-Name: 97aefbc7825732e8fc2e711187c32c49e1149c11
16 lines
317 B
C++
16 lines
317 B
C++
#include <QtGui/QApplication>
|
|
#include "MainWindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
a.setApplicationName("Fuel");
|
|
a.setApplicationVersion("0.9.0");
|
|
a.setOrganizationDomain("karanik.com");
|
|
a.setOrganizationName("Karanik");
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|