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-03-23 08:08:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-23 08:08:53 +0300
commitbb78f38bd1328b8cfe6b4e912e8bb0371035854a (patch)
treed5b652df6bebc29922300cc91f894b8d284dbf72 /source/blender/blenloader
parent3117de3a733e70959819ed6c1a76efddb879e269 (diff)
Cleanup: single quotes for Python enums, spelling
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/versioning_290.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_290.c b/source/blender/blenloader/intern/versioning_290.c
index a4a16acf1d1..00f4c49fda9 100644
--- a/source/blender/blenloader/intern/versioning_290.c
+++ b/source/blender/blenloader/intern/versioning_290.c
@@ -103,7 +103,7 @@ static eSpaceSeq_Proxy_RenderSize get_sequencer_render_size(Main *bmain)
return render_size;
}
-static bool can_use_proxy(Sequence *seq, int psize)
+static bool can_use_proxy(const Sequence *seq, int psize)
{
if (seq->strip->proxy == NULL) {
return false;