It crashes at line similar to "quickWidget = new QQuickWidget();" which can be found in file which was automatically generated for UI by moc. Also QtCreator closes unexpectedly if QQuickWidget is removed in Design mode and one tries to restore it with Ctrl+Z.
Description
Description
Comment Actions
Sill investigating, but it seems to be Qt related bug. Under Windows it works without hassle.
Comment Actions
After reading http://askubuntu.com/questions/561368/why-does-my-qquick-application-crash-on-ubuntu-14-04 changed constructor signature from
GUIApplication(int argc, char** argv, std::string moduleName);
to
GUIApplication(int& argc, char** argv, std::string moduleName);
Seems to run fine under LinuxMint now. Have to check under Windows to be sure before closing the bug.