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>2009-03-27 09:06:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-03-27 09:06:11 +0300
commit607d86167c84b97df144e7a4ed0d27466340cae1 (patch)
tree7d2d16c8fc752c042ddc28c544dcca0dd74ac6c4 /source/blender/editors/space_text/text_header.c
parent2c585ae28ef7cdba01894144076ad3fa60ef1ff9 (diff)
* sequencer transform needs t->data not to be freed by postTrans so special_aftertrans_update can use it.
* text header needs a static char* so text is not rendered as gibberish. (until labels own their own strings) * epy_doc_gen.py - write out a graphviz representation of the data api.
Diffstat (limited to 'source/blender/editors/space_text/text_header.c')
-rw-r--r--source/blender/editors/space_text/text_header.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_text/text_header.c b/source/blender/editors/space_text/text_header.c
index bb9ef5899b3..a72e66e76ee 100644
--- a/source/blender/editors/space_text/text_header.c
+++ b/source/blender/editors/space_text/text_header.c
@@ -388,7 +388,8 @@ static void header_buttons(const bContext *C, uiLayout *layout)
/* file info */
if(text) {
- char fname[HEADER_PATH_MAX], headtxt[HEADER_PATH_MAX+17];
+ char fname[HEADER_PATH_MAX];
+ static char headtxt[HEADER_PATH_MAX+17];
int len;
if(text->name) {