Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
/home/osboxes/hello/hello.cpp:8: error: expected primary-expression before ')' token myapp.setActiveWindow(QWidget); ^
for be more specific if you can show your code that would be good. But i think you have missed
;
at line 7 at last...
QWidget is a class name, you can't pass it as a function parameter. You need to pass a variable name there, in this case a pointer to a widget.
QWidget