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:
authorHans Goudey <h.goudey@me.com>2021-02-22 22:18:49 +0300
committerHans Goudey <h.goudey@me.com>2021-02-22 22:18:49 +0300
commit441c6602704e3a7b828dd4b71ea8061fe9c531bc (patch)
tree2e183a6914920e2c1974ea015fd4513683f1265c /source/blender/editors/interface/interface_intern.h
parent449ccf07e05fdcd8f837ffaddb8768510e8500f7 (diff)
Cleanup: Use bool instead of char
Diffstat (limited to 'source/blender/editors/interface/interface_intern.h')
-rw-r--r--source/blender/editors/interface/interface_intern.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/interface/interface_intern.h b/source/blender/editors/interface/interface_intern.h
index 6a921f3f541..3da66d45abd 100644
--- a/source/blender/editors/interface/interface_intern.h
+++ b/source/blender/editors/interface/interface_intern.h
@@ -510,13 +510,13 @@ struct uiBlock {
const char *lockstr;
- char lock;
+ bool lock;
/** to keep blocks while drawing and free them afterwards */
- char active;
+ bool active;
/** to avoid tooltip after click */
- char tooltipdisabled;
+ bool tooltipdisabled;
/** UI_block_end done? */
- char endblock;
+ bool endblock;
/** for doing delayed */
eBlockBoundsCalc bounds_type;