##// END OF EJS Templates
update to new legend example
update to new legend example

File last commit:

r2150:128c1c36c673
r2172:1aa296db2427
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
#include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}