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_text
parent008aaaa37841ca27d2bba80d8859336655cef455 (diff)
Cleanup: `make format` after SortedIncludes change
Diffstat (limited to 'source/blender/editors/space_text')
-rw-r--r--source/blender/editors/space_text/space_text.c6
-rw-r--r--source/blender/editors/space_text/text_autocomplete.c4
-rw-r--r--source/blender/editors/space_text/text_draw.c8
-rw-r--r--source/blender/editors/space_text/text_format.c2
-rw-r--r--source/blender/editors/space_text/text_format_lua.c2
-rw-r--r--source/blender/editors/space_text/text_format_osl.c2
-rw-r--r--source/blender/editors/space_text/text_format_pov.c2
-rw-r--r--source/blender/editors/space_text/text_format_pov_ini.c2
-rw-r--r--source/blender/editors/space_text/text_format_py.c2
-rw-r--r--source/blender/editors/space_text/text_ops.c6
-rw-r--r--source/blender/editors/space_text/text_undo.c8
11 files changed, 22 insertions, 22 deletions
diff --git a/source/blender/editors/space_text/space_text.c b/source/blender/editors/space_text/space_text.c
index 437b118a69c..92b084a8d0d 100644
--- a/source/blender/editors/space_text/space_text.c
+++ b/source/blender/editors/space_text/space_text.c
@@ -29,14 +29,14 @@
#include "BLI_blenlib.h"
-#include "BKE_global.h"
#include "BKE_context.h"
+#include "BKE_global.h"
#include "BKE_lib_id.h"
#include "BKE_screen.h"
#include "BKE_text.h"
-#include "ED_space_api.h"
#include "ED_screen.h"
+#include "ED_space_api.h"
#include "WM_api.h"
#include "WM_types.h"
@@ -47,9 +47,9 @@
#include "RNA_access.h"
+#include "GPU_framebuffer.h"
#include "text_format.h"
#include "text_intern.h" /* own include */
-#include "GPU_framebuffer.h"
/* ******************** default callbacks for text space ***************** */
diff --git a/source/blender/editors/space_text/text_autocomplete.c b/source/blender/editors/space_text/text_autocomplete.c
index 7a74cf9fe80..cb1861d8726 100644
--- a/source/blender/editors/space_text/text_autocomplete.c
+++ b/source/blender/editors/space_text/text_autocomplete.c
@@ -29,16 +29,16 @@
#include "BLI_ghash.h"
#include "BKE_context.h"
+#include "BKE_screen.h"
#include "BKE_text.h"
#include "BKE_text_suggestions.h"
-#include "BKE_screen.h"
#include "WM_api.h"
#include "WM_types.h"
+#include "ED_screen.h"
#include "ED_text.h"
#include "ED_undo.h"
-#include "ED_screen.h"
#include "UI_interface.h"
diff --git a/source/blender/editors/space_text/text_draw.c b/source/blender/editors/space_text/text_draw.c
index b03c3ca68cb..777b6b1ef1d 100644
--- a/source/blender/editors/space_text/text_draw.c
+++ b/source/blender/editors/space_text/text_draw.c
@@ -27,14 +27,14 @@
#include "BLI_blenlib.h"
#include "BLI_math.h"
-#include "DNA_text_types.h"
-#include "DNA_space_types.h"
#include "DNA_screen_types.h"
+#include "DNA_space_types.h"
+#include "DNA_text_types.h"
#include "BKE_context.h"
+#include "BKE_screen.h"
#include "BKE_text.h"
#include "BKE_text_suggestions.h"
-#include "BKE_screen.h"
#include "ED_text.h"
@@ -45,8 +45,8 @@
#include "UI_resources.h"
#include "UI_view2d.h"
-#include "text_intern.h"
#include "text_format.h"
+#include "text_intern.h"
/******************** text font drawing ******************/
diff --git a/source/blender/editors/space_text/text_format.c b/source/blender/editors/space_text/text_format.c
index 48ee30e450f..2eeb46049d2 100644
--- a/source/blender/editors/space_text/text_format.c
+++ b/source/blender/editors/space_text/text_format.c
@@ -27,8 +27,8 @@
#include "BLI_blenlib.h"
#include "BLI_string_utils.h"
-#include "DNA_text_types.h"
#include "DNA_space_types.h"
+#include "DNA_text_types.h"
#include "ED_text.h"
diff --git a/source/blender/editors/space_text/text_format_lua.c b/source/blender/editors/space_text/text_format_lua.c
index 6bbb0d529ab..42a52ce0f58 100644
--- a/source/blender/editors/space_text/text_format_lua.c
+++ b/source/blender/editors/space_text/text_format_lua.c
@@ -21,8 +21,8 @@
#include "BLI_blenlib.h"
-#include "DNA_text_types.h"
#include "DNA_space_types.h"
+#include "DNA_text_types.h"
#include "BKE_text.h"
diff --git a/source/blender/editors/space_text/text_format_osl.c b/source/blender/editors/space_text/text_format_osl.c
index 0275a293e7a..53e38cfe870 100644
--- a/source/blender/editors/space_text/text_format_osl.c
+++ b/source/blender/editors/space_text/text_format_osl.c
@@ -21,8 +21,8 @@
#include "BLI_blenlib.h"
-#include "DNA_text_types.h"
#include "DNA_space_types.h"
+#include "DNA_text_types.h"
#include "BKE_text.h"
diff --git a/source/blender/editors/space_text/text_format_pov.c b/source/blender/editors/space_text/text_format_pov.c
index 13830aa7c4d..52aaad034bf 100644
--- a/source/blender/editors/space_text/text_format_pov.c
+++ b/source/blender/editors/space_text/text_format_pov.c
@@ -21,8 +21,8 @@
#include "BLI_blenlib.h"
-#include "DNA_text_types.h"
#include "DNA_space_types.h"
+#include "DNA_text_types.h"
#include "BKE_text.h"
diff --git a/source/blender/editors/space_text/text_format_pov_ini.c b/source/blender/editors/space_text/text_format_pov_ini.c
index 08f6d10ac6d..df4f1e6b38c 100644
--- a/source/blender/editors/space_text/text_format_pov_ini.c
+++ b/source/blender/editors/space_text/text_format_pov_ini.c
@@ -21,8 +21,8 @@
#include "BLI_blenlib.h"
-#include "DNA_text_types.h"
#include "DNA_space_types.h"
+#include "DNA_text_types.h"
#include "BKE_text.h"
diff --git a/source/blender/editors/space_text/text_format_py.c b/source/blender/editors/space_text/text_format_py.c
index 1e628bbc39b..3858f7225ef 100644
--- a/source/blender/editors/space_text/text_format_py.c
+++ b/source/blender/editors/space_text/text_format_py.c
@@ -21,8 +21,8 @@
#include "BLI_blenlib.h"
-#include "DNA_text_types.h"
#include "DNA_space_types.h"
+#include "DNA_text_types.h"
#include "BKE_text.h"
diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c
index 43010829bdf..e0b15d0a9d5 100644
--- a/source/blender/editors/space_text/text_ops.c
+++ b/source/blender/editors/space_text/text_ops.c
@@ -21,8 +21,8 @@
* \ingroup sptext
*/
-#include <string.h>
#include <errno.h>
+#include <string.h>
#include "MEM_guardedalloc.h"
@@ -44,9 +44,9 @@
#include "WM_api.h"
#include "WM_types.h"
-#include "ED_text.h"
#include "ED_curve.h"
#include "ED_screen.h"
+#include "ED_text.h"
#include "UI_interface.h"
#include "UI_resources.h"
@@ -57,8 +57,8 @@
# include "BPY_extern.h"
#endif
-#include "text_intern.h"
#include "text_format.h"
+#include "text_intern.h"
static void txt_screen_clamp(SpaceText *st, ARegion *region);
diff --git a/source/blender/editors/space_text/text_undo.c b/source/blender/editors/space_text/text_undo.c
index 4a628cf70e4..4126f36e44a 100644
--- a/source/blender/editors/space_text/text_undo.c
+++ b/source/blender/editors/space_text/text_undo.c
@@ -18,8 +18,8 @@
* \ingroup sptext
*/
-#include <string.h>
#include <errno.h>
+#include <string.h>
#include "MEM_guardedalloc.h"
@@ -33,17 +33,17 @@
#include "PIL_time.h"
#include "BKE_context.h"
+#include "BKE_main.h"
#include "BKE_report.h"
#include "BKE_text.h"
#include "BKE_undo_system.h"
-#include "BKE_main.h"
#include "WM_api.h"
#include "WM_types.h"
-#include "ED_text.h"
#include "ED_curve.h"
#include "ED_screen.h"
+#include "ED_text.h"
#include "ED_undo.h"
#include "UI_interface.h"
@@ -52,8 +52,8 @@
#include "RNA_access.h"
#include "RNA_define.h"
-#include "text_intern.h"
#include "text_format.h"
+#include "text_intern.h"
/* -------------------------------------------------------------------- */
/** \name Implements ED Undo System