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:
authorIan Thompson <quornian@googlemail.com>2008-06-26 22:28:33 +0400
committerIan Thompson <quornian@googlemail.com>2008-06-26 22:28:33 +0400
commitaee5e9561069628cc81bd230339043bee37a43e3 (patch)
treee0e3c87391469e962b3d9ffb8a8c20dc7a24a985 /source/blender/makesdna/DNA_text_types.h
parentfc392040dd035dc03899896cc56d337a8e97e78f (diff)
Modifying a file externally or deleting a file linked with a Blender Text object presents options for reloading, saving or separating the Text object from the external file (like the make local idea).
Diffstat (limited to 'source/blender/makesdna/DNA_text_types.h')
-rw-r--r--source/blender/makesdna/DNA_text_types.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_text_types.h b/source/blender/makesdna/DNA_text_types.h
index d1859d22115..d6ec62e63c0 100644
--- a/source/blender/makesdna/DNA_text_types.h
+++ b/source/blender/makesdna/DNA_text_types.h
@@ -31,6 +31,8 @@
#ifndef DNA_TEXT_TYPES_H
#define DNA_TEXT_TYPES_H
+#include "time.h"
+
#include "DNA_listBase.h"
#include "DNA_ID.h"
@@ -46,7 +48,7 @@ typedef struct Text {
ID id;
char *name;
-
+
int flags, nlines;
ListBase lines;
@@ -57,6 +59,8 @@ typedef struct Text {
int undo_pos, undo_len;
void *compiled;
+
+ time_t mtime;
} Text;