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:
authorluzpaz <luzpaz>2021-12-07 06:31:05 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-12-07 06:39:52 +0300
commitf159d49f56cedccd509ee93f5a5fb51f4f39eeb8 (patch)
tree15e9e730bd927020bcb7b50592b6621f890fae26 /source/blender/makesrna
parent92dae5775f6b4771e21df5865e74d679fb0e37a0 (diff)
Cleanup: Fix various source typos
This is a continuation of D13462 to clean up source typos. Differential Revision: https://developer.blender.org/D13471
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_access_compare_override.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_access_compare_override.c b/source/blender/makesrna/intern/rna_access_compare_override.c
index be8972dbff3..559e3f80abc 100644
--- a/source/blender/makesrna/intern/rna_access_compare_override.c
+++ b/source/blender/makesrna/intern/rna_access_compare_override.c
@@ -614,7 +614,7 @@ static bool rna_property_override_operation_apply(Main *bmain,
}
/* get and set the default values as appropriate for the various types */
- const bool sucess = override_apply(bmain,
+ const bool success = override_apply(bmain,
ptr_dst,
ptr_src,
ptr_storage,
@@ -628,11 +628,11 @@ static bool rna_property_override_operation_apply(Main *bmain,
ptr_item_src,
ptr_item_storage,
opop);
- if (sucess) {
+ if (success) {
RNA_property_update_main(bmain, NULL, ptr_dst, prop_dst);
}
- return sucess;
+ return success;
}
/**