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 <ideasman42@gmail.com>2019-02-15 09:20:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-15 09:22:33 +0300
commit925b20264162d075fcb0c979a9c9c515301bf4d1 (patch)
tree09b76b45ef282b699b8107b39db0ee865eb370db /source/blender/blenloader/intern/versioning_dna.c
parentd132c446528ed003662945ee686417499a4d6319 (diff)
Cleanup: sync minor changes from D4342
Use naming conventions from the patch so they match when it's applied.
Diffstat (limited to 'source/blender/blenloader/intern/versioning_dna.c')
-rw-r--r--source/blender/blenloader/intern/versioning_dna.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenloader/intern/versioning_dna.c b/source/blender/blenloader/intern/versioning_dna.c
index d379edd83f6..854ad7de319 100644
--- a/source/blender/blenloader/intern/versioning_dna.c
+++ b/source/blender/blenloader/intern/versioning_dna.c
@@ -16,8 +16,7 @@
/** \file \ingroup blenloader
*
- * Apply edits to DNA at load time
- * to behave as if old files were written new names.
+ * Apply edits to DNA at load time to behave as if old files were written with new names.
*/
#include "BLI_compiler_attrs.h"
@@ -33,8 +32,9 @@
* Manipulates SDNA before calling #DNA_struct_get_compareflags,
* allowing us to rename structs and struct members.
*
- * \attention Changes here will cause breakages in forward compatbility,
- * Use this only in the _rare_ cases when migrating to new naming is needed.
+ * - This means older versions of Blender won't have access to this data **USE WITH CARE**.
+ *
+ * - These changes are applied on file load (run-time), similar to versioning for compatibility.
*/
void blo_do_versions_dna(SDNA *sdna, const int versionfile, const int subversionfile)
{