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>2010-10-01 19:59:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-01 19:59:34 +0400
commit38b6ca03588a9e772a30e2daa601a95ff3cc224e (patch)
treed2afb7fc178c9a341d6e5b9e211d0ab11d9add8a /source/blender/makesdna/DNA_windowmanager_types.h
parentf9884b8137c6689f4c5223262488fd4b3d6827d6 (diff)
stop dna from parsing structs that aren't used needed.
Diffstat (limited to 'source/blender/makesdna/DNA_windowmanager_types.h')
-rw-r--r--source/blender/makesdna/DNA_windowmanager_types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_windowmanager_types.h b/source/blender/makesdna/DNA_windowmanager_types.h
index e6d0772f425..504694a6fab 100644
--- a/source/blender/makesdna/DNA_windowmanager_types.h
+++ b/source/blender/makesdna/DNA_windowmanager_types.h
@@ -83,6 +83,8 @@ enum ReportListFlags {
RPT_STORE = 2,
RPT_FREE = 4,
};
+#
+#
typedef struct Report {
struct Report *next, *prev;
short type; /* ReportType */
@@ -91,6 +93,8 @@ typedef struct Report {
char *typestr;
char *message;
} Report;
+
+/* saved in the wm, dont remove */
typedef struct ReportList {
ListBase list;
int printlevel; /* ReportType */
@@ -100,6 +104,8 @@ typedef struct ReportList {
} ReportList;
/* timer customdata to control reports display */
+#
+#
typedef struct ReportTimerInfo {
float col[3];
float greyscale;