diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-12 20:08:32 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-12 20:08:32 -0400 |
| commit | dcf581eb14de1b64607bbcee16150d0099941e93 (patch) | |
| tree | ddf6440b3afdc2036ad01b2ccaed58600f0e7442 /new/ui.h | |
| parent | bdb0ffd67a1107e973e941eda502d6685f5e8b13 (diff) | |
Some more uiParent migration.
Diffstat (limited to 'new/ui.h')
| -rw-r--r-- | new/ui.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,7 +40,7 @@ struct uiControl { void *internal; // for use by ui only void (*destroy)(uiControl *); uintptr_t (*handle)(uiControl *); - void (*setParent)(uiControl *, uiContainer *); + void (*setParent)(uiControl *, uiParent *); void (*removeParent)(uiControl *); void (*preferredSize)(uiControl *, uiSizing *, intmax_t *, intmax_t *); void (*resize)(uiControl *, intmax_t, intmax_t, intmax_t, intmax_t, uiSizing *); @@ -56,7 +56,7 @@ struct uiControl { }; void uiControlDestroy(uiControl *); uintptr_t uiControlHandle(uiControl *); -void uiControlSetParent(uiControl *, uiContainer *); +void uiControlSetParent(uiControl *, uiParent *); void uiControlRemoveParent(uiControl *); void uiControlPreferredSize(uiControl *, uiSizing *, intmax_t *width, intmax_t *height); void uiControlResize(uiControl *, intmax_t, intmax_t, intmax_t, intmax_t, uiSizing *); |
