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/object/object_facemap_ops.c')
-rw-r--r--source/blender/editors/object/object_facemap_ops.c25
1 files changed, 12 insertions, 13 deletions
diff --git a/source/blender/editors/object/object_facemap_ops.c b/source/blender/editors/object/object_facemap_ops.c
index d526ea93ffa..857446ac6b0 100644
--- a/source/blender/editors/object/object_facemap_ops.c
+++ b/source/blender/editors/object/object_facemap_ops.c
@@ -24,13 +24,18 @@
* ***** END GPL LICENSE BLOCK *****
*/
+#include <string.h>
+
+#include "MEM_guardedalloc.h"
+
+#include "BLI_utildefines.h"
+#include "BLI_path_util.h"
+#include "BLI_string.h"
+#include "BLI_listbase.h"
#include "DNA_object_types.h"
#include "DNA_mesh_types.h"
-#include "WM_types.h"
-#include "WM_api.h"
-
#include "BKE_context.h"
#include "BKE_customdata.h"
#include "BKE_editmesh.h"
@@ -40,21 +45,15 @@
#include "DEG_depsgraph.h"
-#include "BLI_utildefines.h"
-#include "BLI_path_util.h"
-#include "BLI_string.h"
-#include "BLI_listbase.h"
+#include "RNA_define.h"
+#include "RNA_access.h"
-#include "MEM_guardedalloc.h"
+#include "WM_types.h"
+#include "WM_api.h"
#include "ED_mesh.h"
#include "ED_object.h"
-#include "RNA_define.h"
-#include "RNA_access.h"
-
-#include <string.h>
-
#include "object_intern.h"
/* called while not in editmode */