diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-07 21:05:47 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-07 21:05:47 -0400 |
| commit | c4fa92e18f5c06ed1c4b9c99391d96dec51da6b8 (patch) | |
| tree | 4e74cf0672f5e93c8b3f1884b2657219e83fef84 /new/stack.c | |
| parent | 1bb187d55bad0b34b1fad22f77ce88a9d42e79dd (diff) | |
Decided to remove containerShow() and containerHide() for now.
Diffstat (limited to 'new/stack.c')
| -rw-r--r-- | new/stack.c | 12 |
1 files changed, 0 insertions, 12 deletions
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; } |
