summaryrefslogtreecommitdiffstats
path: root/main.cpp
blob: 98a3be6b2692d070bd12082e5273e131d1902819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "mainwindow.h"
#include <QApplication>
#include <QLocale>
#include <QTranslator>
#include <locale.h>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    MainWindow w;
    w.show();

    return a.exec();
}