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

File last commit:

r486:7ab45bf9f776
r572:1af1de97a8a5
Show More
main.cpp
11 lines | 174 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}