source: mmcs/main.C @ 9dd61b1

matrices
Last change on this file since 9dd61b1 was 9dd61b1, checked in by rboet <rboet@…>, 9 years ago

Avance del proyecto 60%

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