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).
When i quit the app following error occurs.
Why this error occurs? Also i'm giving CppOwnership to the objects.
Best regards.
I solved the problem, first you need to delete the qml application engine instead of deleting the cpp object in the destructor.
For example;
~Application() { delete _qmlAppEngine; //first delete qml app engine delete _app; }
@Yaldiz can you send more codes. It is better simplify the code for questioning.