Cleanup: Use const for context

This commit is contained in:
Hans Goudey 2020-08-12 12:59:19 -04:00
parent 1da053956a
commit 337b6d0758
2 changed files with 2 additions and 2 deletions

View File

@ -1715,7 +1715,7 @@ struct Panel *UI_panel_add_instanced(struct ScrArea *area,
char *panel_idname,
int list_index,
struct PointerRNA *custom_data);
void UI_panels_free_instanced(struct bContext *C, struct ARegion *region);
void UI_panels_free_instanced(const struct bContext *C, struct ARegion *region);
#define LIST_PANEL_UNIQUE_STR_LEN 4
void UI_list_panel_unique_str(struct Panel *panel, char *r_name);

View File

@ -372,7 +372,7 @@ static void panel_delete(const bContext *C, ARegion *region, ListBase *panels, P
* \note Can be called with NULL \a C, but it should be avoided because
* handlers might not be removed.
*/
void UI_panels_free_instanced(bContext *C, ARegion *region)
void UI_panels_free_instanced(const bContext *C, ARegion *region)
{
/* Delete panels with the instanced flag. */
LISTBASE_FOREACH_MUTABLE (Panel *, panel, &region->panels) {