Cleanup: return argument naming
This commit is contained in:
@@ -906,7 +906,7 @@ int UI_autocomplete_end(AutoComplete *autocpl, char *autoname);
|
||||
* not clear yet so we postpone that. */
|
||||
|
||||
void UI_panels_begin(const struct bContext *C, struct ARegion *ar);
|
||||
void UI_panels_end(const struct bContext *C, struct ARegion *ar, int *x, int *y);
|
||||
void UI_panels_end(const struct bContext *C, struct ARegion *ar, int *r_x, int *r_y);
|
||||
void UI_panels_draw(const struct bContext *C, struct ARegion *ar);
|
||||
|
||||
struct Panel *UI_panel_find_by_type(struct ListBase *lb, struct PanelType *pt);
|
||||
@@ -916,7 +916,7 @@ struct Panel *UI_panel_begin(
|
||||
bool *r_open);
|
||||
void UI_panel_end(uiBlock *block, int width, int height);
|
||||
void UI_panels_scale(struct ARegion *ar, float new_width);
|
||||
void UI_panel_label_offset(struct uiBlock *block, int *x, int *y);
|
||||
void UI_panel_label_offset(struct uiBlock *block, int *r_x, int *r_y);
|
||||
int UI_panel_size_y(const struct Panel *pa);
|
||||
|
||||
bool UI_panel_category_is_visible(struct ARegion *ar);
|
||||
@@ -1034,7 +1034,7 @@ enum {
|
||||
|
||||
uiLayout *UI_block_layout(uiBlock *block, int dir, int type, int x, int y, int size, int em, int padding, struct uiStyle *style);
|
||||
void UI_block_layout_set_current(uiBlock *block, uiLayout *layout);
|
||||
void UI_block_layout_resolve(uiBlock *block, int *x, int *y);
|
||||
void UI_block_layout_resolve(uiBlock *block, int *r_x, int *r_y);
|
||||
|
||||
void UI_region_message_subscribe(struct ARegion *ar, struct wmMsgBus *mbus);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user