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/editors/interface/interface.c')
-rw-r--r--source/blender/editors/interface/interface.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/interface/interface.c b/source/blender/editors/interface/interface.c
index 3d8c0da78ea..2a4ca48a005 100644
--- a/source/blender/editors/interface/interface.c
+++ b/source/blender/editors/interface/interface.c
@@ -21,12 +21,12 @@
* \ingroup edinterface
*/
+#include <ctype.h>
#include <float.h>
#include <limits.h>
#include <math.h>
-#include <string.h>
-#include <ctype.h>
#include <stddef.h> /* offsetof() */
+#include <string.h>
#include "MEM_guardedalloc.h"
@@ -36,11 +36,11 @@
#include "DNA_userdef_types.h"
#include "DNA_workspace_types.h"
-#include "BLI_math.h"
#include "BLI_listbase.h"
+#include "BLI_math.h"
+#include "BLI_rect.h"
#include "BLI_string.h"
#include "BLI_string_utf8.h"
-#include "BLI_rect.h"
#include "BLI_utildefines.h"
@@ -65,15 +65,15 @@
#include "IMB_imbuf.h"
#include "WM_api.h"
-#include "WM_types.h"
#include "WM_message.h"
+#include "WM_types.h"
#include "RNA_access.h"
#include "BPY_extern.h"
-#include "ED_screen.h"
#include "ED_numinput.h"
+#include "ED_screen.h"
#include "IMB_colormanagement.h"