From c4fa92e18f5c06ed1c4b9c99391d96dec51da6b8 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 7 Apr 2015 21:05:47 -0400 Subject: Decided to remove containerShow() and containerHide() for now. --- new/stack.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'new/stack.c') diff --git a/new/stack.c b/new/stack.c index 396e9f6..55dc384 100644 --- a/new/stack.c +++ b/new/stack.c @@ -157,16 +157,6 @@ static void stackResize(uiControl *c, intmax_t x, intmax_t y, intmax_t width, in } } -static void stackContainerShow(uiControl *c) -{ - // TODO -} - -static void stackContainerHide(uiControl *c) -{ - // TODO -} - uiControl *uiNewHorizontalStack(void) { stack *s; @@ -177,8 +167,6 @@ uiControl *uiNewHorizontalStack(void) s->control.setParent = stackSetParent; s->control.preferredSize = stackPreferredSize; s->control.resize = stackResize; - s->control.containerShow = stackContainerShow; - s->control.containerHide = stackContainerHide; return (uiControl *) s; } -- cgit v1.2.3