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:
authorBastien Montagne <bastien@blender.org>2020-06-02 16:14:54 +0300
committerBastien Montagne <bastien@blender.org>2020-06-02 16:18:14 +0300
commit21443056b71541528ac9b48c6041ecc62c98cc64 (patch)
tree96c9b345a9db247c810129f32127da611d57070f /source/blender/makesrna/intern/rna_internal.h
parent43ec8c287f6ed1426466ed7b9545b1cc5b678383 (diff)
Turn most flags in BlenderDefRNA into proper bool.
Diffstat (limited to 'source/blender/makesrna/intern/rna_internal.h')
-rw-r--r--source/blender/makesrna/intern/rna_internal.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_internal.h b/source/blender/makesrna/intern/rna_internal.h
index cb59eee6afa..f7d453cdc32 100644
--- a/source/blender/makesrna/intern/rna_internal.h
+++ b/source/blender/makesrna/intern/rna_internal.h
@@ -118,7 +118,12 @@ typedef struct BlenderDefRNA {
ListBase structs;
ListBase allocs;
struct StructRNA *laststruct;
- int error, silent, preprocess, verify, animate;
+ bool error;
+ bool silent;
+ bool preprocess;
+ bool verify;
+ bool animate;
+
/* Keep last. */
#ifndef RNA_RUNTIME
struct {