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:
authorCampbell Barton <ideasman42@gmail.com>2021-01-19 04:59:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-19 04:59:00 +0300
commit2fa7e81d9c455fa188a291db4d1fd918592d3676 (patch)
treede4a6ba456bcf2e9f319a68044e441c20cced750 /source/blender/editors/screen/area.c
parentd144337098181d658ea30c2e263899de5c17966c (diff)
Cleanup: use 'const' argument for parameter argument
Diffstat (limited to 'source/blender/editors/screen/area.c')
-rw-r--r--source/blender/editors/screen/area.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 24773ccbbee..a11dab0291a 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -421,7 +421,7 @@ void ED_area_do_msg_notify_tag_refresh(
}
/* Follow ARegionType.message_subscribe */
-void ED_area_do_mgs_subscribe_for_tool_header(wmRegionMessageSubscribeParams *params)
+void ED_area_do_mgs_subscribe_for_tool_header(const wmRegionMessageSubscribeParams *params)
{
struct wmMsgBus *mbus = params->message_bus;
WorkSpace *workspace = params->workspace;
@@ -437,7 +437,7 @@ void ED_area_do_mgs_subscribe_for_tool_header(wmRegionMessageSubscribeParams *pa
mbus, &workspace->id, workspace, WorkSpace, tools, &msg_sub_value_region_tag_redraw);
}
-void ED_area_do_mgs_subscribe_for_tool_ui(wmRegionMessageSubscribeParams *params)
+void ED_area_do_mgs_subscribe_for_tool_ui(const wmRegionMessageSubscribeParams *params)
{
struct wmMsgBus *mbus = params->message_bus;
WorkSpace *workspace = params->workspace;