source: mmcs/main.C @ 4c71262

Last change on this file since 4c71262 was 68e57de, checked in by rboet <rudmanmrrod@…>, 9 years ago

solucionado una dependencia de recurso para la imagen de cargar matriz

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