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 <montagne29@wanadoo.fr>2019-03-06 13:16:48 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-03-06 17:19:29 +0300
commitac40cf76e5c03af2eca9d3076ec15578660ab245 (patch)
treeaf9af833724cfa702a49eca33914e392c4f98fc8 /source/blender/blenkernel/BKE_library.h
parent173c023197801b45e4c2332e7bc0bc2582c1cc48 (diff)
Cleanup: use default ID type's name instead of generic 'Untitled' for new IDs.
Diffstat (limited to 'source/blender/blenkernel/BKE_library.h')
-rw-r--r--source/blender/blenkernel/BKE_library.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/blenkernel/BKE_library.h b/source/blender/blenkernel/BKE_library.h
index 34ea5505750..45a60453d2e 100644
--- a/source/blender/blenkernel/BKE_library.h
+++ b/source/blender/blenkernel/BKE_library.h
@@ -227,9 +227,6 @@ bool BKE_id_is_in_global_main(struct ID *id);
void BKE_id_ordered_list(struct ListBase *ordered_lb, const struct ListBase *lb);
void BKE_id_reorder(const struct ListBase *lb, struct ID *id, struct ID *relative, bool after);
-/* use when "" is given to BKE_id_new_name_validate() */
-#define ID_FALLBACK_NAME N_("Untitled")
-
#define IS_TAGGED(_id) ((_id) && (((ID *)_id)->tag & LIB_TAG_DOIT))
#ifdef __cplusplus