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:
authorTon Roosendaal <ton@blender.org>2008-12-19 15:48:30 +0300
committerTon Roosendaal <ton@blender.org>2008-12-19 15:48:30 +0300
commit63195b01794e42243b1bcac01de43eccaa89fade (patch)
tree0f08883942e937350b580700b79eeea452f9b699 /source/blender/editors/screen/area.c
parentd92b45d558b861ef3c314f1d9c926113aa36326c (diff)
2.5
Compile fix; MAXFLOAT is not defined uniformly on platforms. Note for the coders: ED_types.h: has editor wide defines and structs ED_util.h: has editor wide functions Both includes also are containing old cruft to get things to compile (and work), for later cleanup.
Diffstat (limited to 'source/blender/editors/screen/area.c')
-rw-r--r--source/blender/editors/screen/area.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 27f70353e39..cec34155610 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -39,13 +39,14 @@
#include "BKE_screen.h"
#include "BKE_utildefines.h"
-#include "ED_screen.h"
-#include "ED_screen_types.h"
-
#include "WM_api.h"
#include "WM_types.h"
#include "wm_subwindow.h"
+#include "ED_screen.h"
+#include "ED_screen_types.h"
+#include "ED_types.h"
+
#include "BIF_gl.h"
#include "BIF_glutil.h"
@@ -57,8 +58,6 @@
#include "BPY_extern.h"
#endif
-#include "ED_util.h"
-
#include "screen_intern.h"
/* general area and region code */