Implemented lifetime stuff on Windows Tab. Starting to wonder why I'm bothering, or if this is even working. Anyway now I can write uiTabDeletePage()...
This commit is contained in:
parent
efd94b2528
commit
492099f85a
|
@ -48,8 +48,10 @@ static BOOL onWM_NOTIFY(uiControl *c, NMHDR *nm, LRESULT *lResult)
|
||||||
static void onWM_DESTROY(uiControl *c)
|
static void onWM_DESTROY(uiControl *c)
|
||||||
{
|
{
|
||||||
struct tab *t = (struct tab *) c;
|
struct tab *t = (struct tab *) c;
|
||||||
|
uintmax_t i;
|
||||||
|
|
||||||
// no need to worry about freeing the pages themselves; they'll destroy themselves after we return
|
for (i = 0; i < t->len; i++)
|
||||||
|
uiParentDestroy(t->pages[i]);
|
||||||
uiFree(t->pages);
|
uiFree(t->pages);
|
||||||
uiFree(t);
|
uiFree(t);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue