tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 12 Nov 2017 17:25:17 +0100
changeset 12830 ffa905c96dd8
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix grammar fail in cosmos.lua (string freeze compliant) This is string freeze compliant because the new string is already contained in stub.lua.

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}