##// END OF EJS Templates
Fixes missing intlization in chartanimator
Fixes missing intlization in chartanimator

File last commit:

r147:ede69107bdd8
r720:605f266f80f8
Show More
main.cpp
18 lines | 316 B | text/x-c | CppLexer
Jani Honkonen
First draft of project structure
r1 #include <QtCore/QtGlobal>
#if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0))
#include <QApplication>
#else
#include <QtWidgets/QApplication>
#endif
Tero Ahola
New features like chart type to the test app
r5 #include "mainwidget.h"
Jani Honkonen
First draft of project structure
r1
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Tero Ahola
New features like chart type to the test app
r5 MainWidget w;
Michal Klocek
Fix test application to have valid window size
r147 w.resize(1000,600);
Jani Honkonen
First draft of project structure
r1 w.show();
Tero Ahola
New features like chart type to the test app
r5
Jani Honkonen
First draft of project structure
r1 return a.exec();
}