For a Qt application that the developer is trying to spare as much system memory as possible, is there any significant benefit in controlling the visibility of a widget by deleting and constructing it, as opposed to using hide() and show()?
The choice of deleting it instead of hiding it would be in the sense of releasing the system resources for the widget when it's not visible, so it doesn't remain allocated.
Bookmarks