##// END OF EJS Templates
Fix copyright header for normalize tool...
Fix copyright header for normalize tool This file is taken from Qt4 repository, so it should have the same header.

File last commit:

r2358:9d5a354692be
r2434:b9f3bb08b3e6
Show More
main.cpp
11 lines | 164 B | text/x-c | CppLexer
#include <QApplication>
#include "view.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
View w;
w.show();
return a.exec();
}