Phil Mc wrote: > I haven't used the Mdi window classes, but I did just spend awhile trying > to get widgets to go away that turned out to still have references coming > in. I believe that DeleteOnClose won't do the expected things to a widget > that still has direct references pointing to it; that was my experience > with that flag, anyway.
Setting DeleteOnClose on a widget means it will be explicitly deleted when the function close() is called. If you have references to the widget in the application code after this, these will be internally reset to be null-pointers so you will get exceptions if you call methods on them. _______________________________________________ Qt-jambi-interest mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest
