diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-14 19:36:58 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-14 19:37:41 -0400 |
| commit | eb62b8e32babc702920d0f1947d4a82b5a775b43 (patch) | |
| tree | 29eeee8c1fa36689fb25d66c9bacd8bb4f7cfd1c /new/ui.h | |
| parent | 1f9975a7fafa9909ec2d1c355d068511dd1265b1 (diff) | |
Changed uiStackAdd() to uiStackAppend() and uiStackRemove() to uiStackDelete(); this will be the naming system other containers will follow.
Diffstat (limited to 'new/ui.h')
| -rw-r--r-- | new/ui.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -133,8 +133,8 @@ void uiButtonOnClicked(uiControl *, void (*)(uiControl *, void *), void *); uiControl *uiNewHorizontalStack(void); uiControl *uiNewVerticalStack(void); -void uiStackAdd(uiControl *, uiControl *, int); -void uiStackRemove(uiControl *, uintmax_t); +void uiStackAppend(uiControl *, uiControl *, int); +void uiStackDelete(uiControl *, uintmax_t); int uiStackPadded(uiControl *); void uiStackSetPadded(uiControl *, int); |
