0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-23 16:22:58 +03:00
LimeReport/lrdview/main.cpp

14 lines
242 B
C++
Raw Normal View History

2021-09-11 19:03:57 +03:00
#include "MainWindow.h"
2021-09-11 19:03:57 +03:00
#include <QApplication>
int main(int argc, char* argv[])
2021-09-11 19:03:57 +03:00
{
QApplication a(argc, argv);
// QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8"));
2021-09-11 19:03:57 +03:00
MainWindow w;
w.show();
return a.exec();
}