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/editors/space_nla
parent008aaaa37841ca27d2bba80d8859336655cef455 (diff)
Cleanup: `make format` after SortedIncludes change
Diffstat (limited to 'source/blender/editors/space_nla')
-rw-r--r--source/blender/editors/space_nla/nla_buttons.c8
-rw-r--r--source/blender/editors/space_nla/nla_channels.c8
-rw-r--r--source/blender/editors/space_nla/nla_draw.c10
-rw-r--r--source/blender/editors/space_nla/nla_edit.c4
-rw-r--r--source/blender/editors/space_nla/nla_ops.c2
-rw-r--r--source/blender/editors/space_nla/nla_select.c6
-rw-r--r--source/blender/editors/space_nla/space_nla.c8
7 files changed, 23 insertions, 23 deletions
diff --git a/source/blender/editors/space_nla/nla_buttons.c b/source/blender/editors/space_nla/nla_buttons.c
index 315fa1d12aa..ca7f8791f75 100644
--- a/source/blender/editors/space_nla/nla_buttons.c
+++ b/source/blender/editors/space_nla/nla_buttons.c
@@ -21,10 +21,10 @@
* \ingroup spnla
*/
-#include <string.h>
-#include <stdio.h>
-#include <math.h>
#include <float.h>
+#include <math.h>
+#include <stdio.h>
+#include <string.h>
#include "DNA_anim_types.h"
@@ -36,8 +36,8 @@
#include "BLT_translation.h"
-#include "BKE_nla.h"
#include "BKE_context.h"
+#include "BKE_nla.h"
#include "BKE_screen.h"
#include "WM_api.h"
diff --git a/source/blender/editors/space_nla/nla_channels.c b/source/blender/editors/space_nla/nla_channels.c
index b97267dc2a8..a69aed38cab 100644
--- a/source/blender/editors/space_nla/nla_channels.c
+++ b/source/blender/editors/space_nla/nla_channels.c
@@ -21,10 +21,10 @@
* \ingroup spnla
*/
-#include <string.h>
+#include <math.h>
#include <stdio.h>
#include <stdlib.h>
-#include <math.h>
+#include <string.h>
#include "DNA_anim_types.h"
#include "DNA_object_types.h"
@@ -34,12 +34,12 @@
#include "BLI_utildefines.h"
#include "BKE_animsys.h"
-#include "BKE_nla.h"
#include "BKE_context.h"
#include "BKE_global.h"
+#include "BKE_nla.h"
+#include "BKE_report.h"
#include "BKE_scene.h"
#include "BKE_screen.h"
-#include "BKE_report.h"
#include "ED_anim_api.h"
#include "ED_keyframes_edit.h"
diff --git a/source/blender/editors/space_nla/nla_draw.c b/source/blender/editors/space_nla/nla_draw.c
index 56176c1cb92..4ccf752a916 100644
--- a/source/blender/editors/space_nla/nla_draw.c
+++ b/source/blender/editors/space_nla/nla_draw.c
@@ -21,11 +21,11 @@
* \ingroup spnla
*/
-#include <string.h>
+#include <float.h>
+#include <math.h>
#include <stdio.h>
#include <stdlib.h>
-#include <math.h>
-#include <float.h>
+#include <string.h>
#include "DNA_anim_types.h"
#include "DNA_node_types.h"
@@ -37,9 +37,9 @@
#include "BLI_dlrbTree.h"
#include "BLI_utildefines.h"
+#include "BKE_context.h"
#include "BKE_fcurve.h"
#include "BKE_nla.h"
-#include "BKE_context.h"
#include "BKE_screen.h"
#include "ED_anim_api.h"
@@ -55,8 +55,8 @@
#include "UI_resources.h"
#include "UI_view2d.h"
-#include "nla_private.h"
#include "nla_intern.h" /* own include */
+#include "nla_private.h"
/* *********************************************** */
/* Strips */
diff --git a/source/blender/editors/space_nla/nla_edit.c b/source/blender/editors/space_nla/nla_edit.c
index f15e26e1b0d..2427001657a 100644
--- a/source/blender/editors/space_nla/nla_edit.c
+++ b/source/blender/editors/space_nla/nla_edit.c
@@ -21,9 +21,9 @@
* \ingroup spnla
*/
-#include <string.h>
-#include <stdio.h>
#include <math.h>
+#include <stdio.h>
+#include <string.h>
#include "DNA_anim_types.h"
#include "DNA_object_types.h"
diff --git a/source/blender/editors/space_nla/nla_ops.c b/source/blender/editors/space_nla/nla_ops.c
index 55470388e22..2e32c496170 100644
--- a/source/blender/editors/space_nla/nla_ops.c
+++ b/source/blender/editors/space_nla/nla_ops.c
@@ -21,8 +21,8 @@
* \ingroup spnla
*/
-#include <string.h>
#include <stdio.h>
+#include <string.h>
#include "DNA_scene_types.h"
diff --git a/source/blender/editors/space_nla/nla_select.c b/source/blender/editors/space_nla/nla_select.c
index b8d5b17e26c..09abfc300c7 100644
--- a/source/blender/editors/space_nla/nla_select.c
+++ b/source/blender/editors/space_nla/nla_select.c
@@ -21,8 +21,8 @@
* \ingroup spnla
*/
-#include <string.h>
#include <stdio.h>
+#include <string.h>
#include "DNA_anim_types.h"
#include "DNA_scene_types.h"
@@ -31,8 +31,8 @@
#include "BLI_blenlib.h"
-#include "BKE_nla.h"
#include "BKE_context.h"
+#include "BKE_nla.h"
#include "BKE_screen.h"
#include "ED_anim_api.h"
@@ -46,8 +46,8 @@
#include "WM_api.h"
#include "WM_types.h"
-#include "UI_view2d.h"
#include "UI_interface.h"
+#include "UI_view2d.h"
#include "nla_intern.h" // own include
diff --git a/source/blender/editors/space_nla/space_nla.c b/source/blender/editors/space_nla/space_nla.c
index e04338b41fc..c4e1431ee26 100644
--- a/source/blender/editors/space_nla/space_nla.c
+++ b/source/blender/editors/space_nla/space_nla.c
@@ -21,8 +21,8 @@
* \ingroup spnla
*/
-#include <string.h>
#include <stdio.h>
+#include <string.h>
#include "DNA_anim_types.h"
#include "DNA_collection_types.h"
@@ -36,15 +36,15 @@
#include "BKE_context.h"
#include "BKE_screen.h"
-#include "ED_space_api.h"
#include "ED_anim_api.h"
#include "ED_markers.h"
#include "ED_screen.h"
+#include "ED_space_api.h"
#include "ED_time_scrub_ui.h"
#include "WM_api.h"
-#include "WM_types.h"
#include "WM_message.h"
+#include "WM_types.h"
#include "RNA_access.h"
@@ -52,8 +52,8 @@
#include "UI_resources.h"
#include "UI_view2d.h"
-#include "nla_intern.h" /* own include */
#include "GPU_framebuffer.h"
+#include "nla_intern.h" /* own include */
/* ******************** default callbacks for nla space ***************** */