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:
Diffstat (limited to 'source/blender/makesdna/DNA_oops_types.h')
-rw-r--r--source/blender/makesdna/DNA_oops_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_oops_types.h b/source/blender/makesdna/DNA_oops_types.h
index 52130c113cc..3b03af4dfd9 100644
--- a/source/blender/makesdna/DNA_oops_types.h
+++ b/source/blender/makesdna/DNA_oops_types.h
@@ -44,7 +44,7 @@ struct ID;
typedef struct Oops {
struct Oops *next, *prev;
short type, flag, dt, hide;
- float x, y; /* linksonder */
+ float x, y; /* left - bottom */
float dx, dy; /* shuffle */
struct ID *id;
ListBase link;
@@ -56,7 +56,7 @@ typedef struct OopsLink {
struct OopsLink *next, *prev;
short type, flag;
ID **idfrom;
- Oops *to, *from; /* from is voor temp */
+ Oops *to, *from; /* from is for temp */
float xof, yof;
char name[12];
} OopsLink;