02-11-2013 07:25 PM
In my app I have two qml files. The main and sub.
To load the sub and display the screen I use
QmlDocument *qml = QmlDocument::create("asset:///subform.qml").parent
qml->setContextProperty("_mainApp",this);
subSheet = qml->createRootObject<Sheet>();
When the screen is closed I use
delete subShett;
Now when I quit the application I get bunch of these.
default 9000 ERROR: Context: Object name=" "ImageData" " [objectId= 203 ] not
unrealized
are those memory leaks? How do I get rid of them?
02-12-2013 08:10 PM