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:
authorDalai Felinto <dalai@blender.org>2020-03-19 11:33:03 +0300
committerDalai Felinto <dalai@blender.org>2020-03-19 11:33:58 +0300
commit2d1cce8331f3ecdfb8cb0c651e111ffac5dc7153 (patch)
treeec50d7bdca3901a6afcc986943011f08f9516307 /source/blender/windowmanager/intern/wm_event_system.c
parent008aaaa37841ca27d2bba80d8859336655cef455 (diff)
Cleanup: `make format` after SortedIncludes change
Diffstat (limited to 'source/blender/windowmanager/intern/wm_event_system.c')
-rw-r--r--source/blender/windowmanager/intern/wm_event_system.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c
index c14ae57d4a3..6f133e063f7 100644
--- a/source/blender/windowmanager/intern/wm_event_system.c
+++ b/source/blender/windowmanager/intern/wm_event_system.c
@@ -29,10 +29,10 @@
#include <string.h>
#include "DNA_listBase.h"
-#include "DNA_screen_types.h"
#include "DNA_scene_types.h"
-#include "DNA_windowmanager_types.h"
+#include "DNA_screen_types.h"
#include "DNA_userdef_types.h"
+#include "DNA_windowmanager_types.h"
#include "MEM_guardedalloc.h"
@@ -42,14 +42,14 @@
#include "BLI_blenlib.h"
#include "BLI_dynstr.h"
-#include "BLI_utildefines.h"
#include "BLI_math.h"
#include "BLI_timer.h"
+#include "BLI_utildefines.h"
#include "BKE_context.h"
#include "BKE_customdata.h"
-#include "BKE_idprop.h"
#include "BKE_global.h"
+#include "BKE_idprop.h"
#include "BKE_main.h"
#include "BKE_report.h"
#include "BKE_scene.h"
@@ -63,9 +63,9 @@
#include "ED_fileselect.h"
#include "ED_info.h"
#include "ED_screen.h"
-#include "ED_view3d.h"
-#include "ED_util.h"
#include "ED_undo.h"
+#include "ED_util.h"
+#include "ED_view3d.h"
#include "RNA_access.h"
@@ -74,14 +74,14 @@
#include "PIL_time.h"
#include "WM_api.h"
-#include "WM_types.h"
#include "WM_message.h"
#include "WM_toolsystem.h"
+#include "WM_types.h"
#include "wm.h"
-#include "wm_window.h"
#include "wm_event_system.h"
#include "wm_event_types.h"
+#include "wm_window.h"
#include "DEG_depsgraph.h"
#include "DEG_depsgraph_query.h"