Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2020-04-04 06:20:25 +0300
committerHans Goudey <h.goudey@me.com>2020-04-04 06:20:25 +0300
commit6fa904765a92e1847f8b28b1062c91dcf37beb52 (patch)
treed5e867fc63f67976632d221b937183161a716cb4 /source/blender/editors/include
parent7c0e285948408c39902b3349e3da9a2fbc1e2fc2 (diff)
Cleanup: Rename Panel * variables from pa to panel
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/UI_interface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/include/UI_interface.h b/source/blender/editors/include/UI_interface.h
index 56f7f0faad7..eb134646649 100644
--- a/source/blender/editors/include/UI_interface.h
+++ b/source/blender/editors/include/UI_interface.h
@@ -1655,7 +1655,7 @@ struct Panel *UI_panel_begin(struct ScrArea *area,
struct ListBase *lb,
uiBlock *block,
struct PanelType *pt,
- struct Panel *pa,
+ struct Panel *panel,
bool *r_open);
void UI_panel_end(const struct ScrArea *area,
const struct ARegion *region,
@@ -1665,7 +1665,7 @@ void UI_panel_end(const struct ScrArea *area,
bool open);
void UI_panels_scale(struct ARegion *region, float new_width);
void UI_panel_label_offset(struct uiBlock *block, int *r_x, int *r_y);
-int UI_panel_size_y(const struct Panel *pa);
+int UI_panel_size_y(const struct Panel *panel);
bool UI_panel_category_is_visible(const struct ARegion *region);
void UI_panel_category_add(struct ARegion *region, const char *name);