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 <campbell@blender.org>2022-04-04 05:20:56 +0300
committerCampbell Barton <campbell@blender.org>2022-04-04 05:35:33 +0300
commitf6a20fca5ed841c5276b35da87d02b3be9db6f85 (patch)
treec0be59bcaa28044ac3b2ea0a6d8cf1943cf13eb7 /source/blender/editors/interface
parent637fe6f5ff9c8f09bdbd8e37f6d67b29e79b4a39 (diff)
Cleanup: compiler warnings
Diffstat (limited to 'source/blender/editors/interface')
-rw-r--r--source/blender/editors/interface/interface_utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_utils.cc b/source/blender/editors/interface/interface_utils.cc
index b796f07c24b..56d80b8e557 100644
--- a/source/blender/editors/interface/interface_utils.cc
+++ b/source/blender/editors/interface/interface_utils.cc
@@ -489,7 +489,7 @@ static bool add_collection_search_item(CollItemSearch *cis,
cis->name,
cis->data,
cis->iconid,
- cis->has_sep_char ? UI_BUT_HAS_SEP_CHAR : 0,
+ cis->has_sep_char ? (int)UI_BUT_HAS_SEP_CHAR : 0,
name_prefix_offset);
}