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_text
parentd144337098181d658ea30c2e263899de5c17966c (diff)
Cleanup: use 'const' argument for parameter argument
Diffstat (limited to 'source/blender/editors/space_text')
-rw-r--r--source/blender/editors/space_text/space_text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_text/space_text.c b/source/blender/editors/space_text/space_text.c
index 90b75d26526..045305e0f5d 100644
--- a/source/blender/editors/space_text/space_text.c
+++ b/source/blender/editors/space_text/space_text.c
@@ -122,7 +122,7 @@ static SpaceLink *text_duplicate(SpaceLink *sl)
return (SpaceLink *)stextn;
}
-static void text_listener(wmSpaceTypeListenerParams *params)
+static void text_listener(const wmSpaceTypeListenerParams *params)
{
ScrArea *area = params->area;
wmNotifier *wmn = params->notifier;