##// END OF EJS Templates
chartviewer: changed log bases in some charts
chartviewer: changed log bases in some charts

File last commit:

r2229:bee551388900
r2291:d0fa2a6e848f
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
Marek Rosa
Added simple demoLauncher application
r2229 #include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}