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-11-27 16:58:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-27 17:04:21 +0300
commitf1c994c555da7c3e27984cc26b7f226badbe670d (patch)
treea42c43762e56cad6f59f50922ef4c341b5632826 /source/blender/makesdna/DNA_text_types.h
parentf6cefbef22c8c6583b4927c179dabac3eb57aa22 (diff)
Cleanup: move space text vars into a runtime struct
Also use more descriptive names.
Diffstat (limited to 'source/blender/makesdna/DNA_text_types.h')
-rw-r--r--source/blender/makesdna/DNA_text_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_text_types.h b/source/blender/makesdna/DNA_text_types.h
index 4eec2c1fde8..8303f2322b6 100644
--- a/source/blender/makesdna/DNA_text_types.h
+++ b/source/blender/makesdna/DNA_text_types.h
@@ -36,7 +36,8 @@ typedef struct TextLine {
/** May be NULL if syntax is off or not yet formatted. */
char *format;
/** Blen unused. */
- int len, blen;
+ int len;
+ char _pad0[4];
} TextLine;
typedef struct Text {