##// END OF EJS Templates
Fixes after merge
Fixes after merge

File last commit:

r486:7ab45bf9f776
r683:ef336a9288eb
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();
}