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/space_statusbar
parentd144337098181d658ea30c2e263899de5c17966c (diff)
Cleanup: use 'const' argument for parameter argument
Diffstat (limited to 'source/blender/editors/space_statusbar')
-rw-r--r--source/blender/editors/space_statusbar/space_statusbar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_statusbar/space_statusbar.c b/source/blender/editors/space_statusbar/space_statusbar.c
index bf7535f5448..e877cf8ffcf 100644
--- a/source/blender/editors/space_statusbar/space_statusbar.c
+++ b/source/blender/editors/space_statusbar/space_statusbar.c
@@ -95,7 +95,7 @@ static void statusbar_keymap(struct wmKeyConfig *UNUSED(keyconf))
{
}
-static void statusbar_header_region_listener(wmRegionListenerParams *params)
+static void statusbar_header_region_listener(const wmRegionListenerParams *params)
{
ARegion *region = params->region;
wmNotifier *wmn = params->notifier;
@@ -130,7 +130,7 @@ static void statusbar_header_region_listener(wmRegionListenerParams *params)
}
}
-static void statusbar_header_region_message_subscribe(wmRegionMessageSubscribeParams *params)
+static void statusbar_header_region_message_subscribe(const wmRegionMessageSubscribeParams *params)
{
struct wmMsgBus *mbus = params->message_bus;
ARegion *region = params->region;