##// END OF EJS Templates
Bugfix dangling pointer in qlegend, remove debug info
Bugfix dangling pointer in qlegend, remove debug info

File last commit:

r536:79d5184b167f
r572:1af1de97a8a5
Show More
main.cpp
12 lines | 202 B | text/x-c | CppLexer
Tero Ahola
Clicked, remove and clear to QScatterSeries
r394 #include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
Michal Klocek
Fix sctter series wrong points offset issue
r536 w.resize(400, 300);
Tero Ahola
Clicked, remove and clear to QScatterSeries
r394 w.show();
return a.exec();
}