tools/hwmap2txt/hwmapconverter/main.cpp
author antonc27 <antonc27@mail.ru>
Thu, 29 Oct 2015 23:59:51 +0100
branchios-revival
changeset 11253 62d1a66b353d
parent 11015 7a905f0070ce
permissions -rw-r--r--
- Refactoring of SavedViewController: - - Workaround for cells' wrong tags in SavedViewController when removing saves - - Disabled editing of save names

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

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

    return a.exec();
}