##// END OF EJS Templates
Log domains zoomin, zoomout and move added
Log domains zoomin, zoomout and move added

File last commit:

r2229:bee551388900
r2280:75ed5c985850
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();
}