Quote Originally Posted by Alundra View Post
Does a QTabWidget remove the tab from the last to the first when it's deleted ?
From the code it looks like the internal stack widget deletes the widgets on destruction, in the order of the stack/tabs.
But that should be easy enough to test, right

Quote Originally Posted by Alundra View Post
The only way to remove one tab at the end is to use an event to know when it's closed and close all other ?
Not sure what you mean.
To remove the last tab, you call removeTab() with the last index, which is count() - 1.

Cheers,
_