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-07-15 16:51:13 +0300
committerBastien Montagne <bastien@blender.org>2020-07-15 19:17:34 +0300
commita082e4967192e3735e979aee42e003401409053e (patch)
treecd44eac19760b6fd17bf11ad2499244a33e7a232 /source/blender
parentcda6da4957186710d7390d16aa8559333642c383 (diff)
Cleanup: remove debug prints.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/object/object_relations.c8
-rw-r--r--source/blender/editors/space_outliner/outliner_tools.c3
2 files changed, 0 insertions, 11 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index 945c7e87eb1..94f85641a73 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -2397,14 +2397,6 @@ static int make_override_library_exec(bContext *C, wmOperator *op)
/* Note that this call will also free the main relations data we created above. */
BKE_lib_override_library_dependencies_tag(bmain, id_root, LIB_TAG_DOIT, false);
- ID *id;
- FOREACH_MAIN_ID_BEGIN (bmain, id) {
- if (id->tag & LIB_TAG_DOIT && id->lib != NULL) {
- printf("ID %s tagged for override\n", id->name);
- }
- }
- FOREACH_MAIN_ID_END;
-
success = BKE_lib_override_library_create_from_tag(bmain);
if (success) {
diff --git a/source/blender/editors/space_outliner/outliner_tools.c b/source/blender/editors/space_outliner/outliner_tools.c
index f0287984268..de6f169e574 100644
--- a/source/blender/editors/space_outliner/outliner_tools.c
+++ b/source/blender/editors/space_outliner/outliner_tools.c
@@ -763,8 +763,6 @@ static void id_override_library_cb(bContext *C,
id_root->tag |= LIB_TAG_DOIT;
- printf("%s: Tagging root id %s\n", __func__, id_root->name);
-
/* For now, remapp all local usages of linked ID to local override one here. */
ID *id_iter;
FOREACH_MAIN_ID_BEGIN (bmain, id_iter) {
@@ -787,7 +785,6 @@ static void id_override_library_cb(bContext *C,
break;
}
te->store_elem->id->tag |= LIB_TAG_DOIT;
- printf("%s: Tagging parent id %s\n", __func__, te->store_elem->id->name);
}
BKE_lib_override_library_dependencies_tag(bmain, id_root, LIB_TAG_DOIT, true);
BKE_lib_override_library_create_from_tag(bmain);