source: mmcs/main.C

Last change on this file was e62517a, checked in by rudmanmrrod <rudman22@…>, 8 years ago

Migrado el proyecto a la versión 5 de Qt, agregado primer boceto del PDF

  • Property mode set to 100755
File size: 419 bytes
RevLine 
[239e1ea]1/*
2    realizado por José Ruiz en Mayo de 2015
3*/
4
[44d1e60]5# include <QApplication>
6# include <mainwindow.H>
[9dd61b1]7
[44d1e60]8int main(int argc, char * argv[])
9{
10    QApplication app(argc, argv);
11
12    QTextCodec * textCodec = QTextCodec::codecForName("UTF-8");
13    QTextCodec::setCodecForLocale(textCodec);
14
15    QLocale::setDefault(QLocale(QLocale::Spanish, QLocale::Venezuela));
16
17    MainWindow mw;
[9dd61b1]18
[44d1e60]19    mw.show();
20
21    return app.exec();
22}
Note: See TracBrowser for help on using the repository browser.