##// END OF EJS Templates
demolauncher fix
demolauncher fix

File last commit:

r2150:128c1c36c673
r2232:e10ccc2f806c
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();
}