##// END OF EJS Templates
build error fix after merge
build error fix after merge

File last commit:

r536:79d5184b167f
r682:137b7097b510
Show More
main.cpp
12 lines | 202 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.resize(400, 300);
w.show();
return a.exec();
}