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_userpref
parentd144337098181d658ea30c2e263899de5c17966c (diff)
Cleanup: use 'const' argument for parameter argument
Diffstat (limited to 'source/blender/editors/space_userpref')
-rw-r--r--source/blender/editors/space_userpref/space_userpref.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_userpref/space_userpref.c b/source/blender/editors/space_userpref/space_userpref.c
index 52c97ed5014..d4692f156d3 100644
--- a/source/blender/editors/space_userpref/space_userpref.c
+++ b/source/blender/editors/space_userpref/space_userpref.c
@@ -183,19 +183,19 @@ static void userpref_execute_region_init(wmWindowManager *wm, ARegion *region)
region->v2d.keepzoom |= V2D_LOCKZOOM_X | V2D_LOCKZOOM_Y;
}
-static void userpref_main_region_listener(wmRegionListenerParams *UNUSED(params))
+static void userpref_main_region_listener(const wmRegionListenerParams *UNUSED(params))
{
}
-static void userpref_header_listener(wmRegionListenerParams *UNUSED(params))
+static void userpref_header_listener(const wmRegionListenerParams *UNUSED(params))
{
}
-static void userpref_navigation_region_listener(wmRegionListenerParams *UNUSED(params))
+static void userpref_navigation_region_listener(const wmRegionListenerParams *UNUSED(params))
{
}
-static void userpref_execute_region_listener(wmRegionListenerParams *UNUSED(params))
+static void userpref_execute_region_listener(const wmRegionListenerParams *UNUSED(params))
{
}