source: mmcs/main.C @ 44d1e60

matrices
Last change on this file since 44d1e60 was 44d1e60, checked in by Jose Ruiz <joseruiz@…>, 9 years ago

commit inicial

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