win is a window. Does the following function

win.close();

clean up the memory by

doc.remove(win);

and thereafter 

dispose of the win component, or do I have to do the following:

doc.add(win);
win.open();
win.close()
doc.remove(win);
win.dispose();
win = null;

to complete the cycle? Actually I think it should be built-into the
widgets QxWindow, QxFrame and QxDialog if a property like dynamicMemory
in the QxWidget class is set to true. After testing myself I can see
that the total performance does not change, it actually adds a little
bit, but it is spread in time and the user feels less delay at running.
Additionally, startup time of the application and possibly the class
library will be shorter.

Kent



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to