fuel-scm/main.cpp
kostas 379d9707cb Reintroduced the status character, since it is necessary for the automatic sorting
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
2011-08-07 04:56:05 +00:00

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();
}