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:
authorCampbell Barton <ideasman42@gmail.com>2019-08-14 18:20:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-14 18:32:46 +0300
commit8cbe9f1b9ad8ba63eadbd15270338c24005e0e9c (patch)
tree229a153a4823da7a57b954c3567a79d187b0f834 /source/blender/windowmanager
parentc5c4012b107c03dac2ebff321fd36c57c2c7d051 (diff)
Cleanup: headers
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c7
-rw-r--r--source/blender/windowmanager/intern/wm_splash_screen.c58
2 files changed, 1 insertions, 64 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 3ce7425f03d..4dfcae1d969 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -46,7 +46,6 @@
#include "DNA_scene_types.h"
#include "DNA_userdef_types.h"
#include "DNA_windowmanager_types.h"
-#include "DNA_workspace_types.h"
#include "BLT_translation.h"
@@ -58,10 +57,6 @@
#include "BLI_math.h"
#include "BLI_utildefines.h"
-#include "BLO_readfile.h"
-
-#include "BKE_appdir.h"
-#include "BKE_blender_version.h"
#include "BKE_brush.h"
#include "BKE_context.h"
#include "BKE_global.h"
@@ -87,7 +82,6 @@
#include "GPU_state.h"
#include "IMB_imbuf_types.h"
-#include "IMB_imbuf.h"
#include "ED_numinput.h"
#include "ED_screen.h"
@@ -107,7 +101,6 @@
#include "wm.h"
#include "wm_draw.h"
-#include "wm_event_system.h"
#include "wm_event_types.h"
#include "wm_files.h"
#include "wm_window.h"
diff --git a/source/blender/windowmanager/intern/wm_splash_screen.c b/source/blender/windowmanager/intern/wm_splash_screen.c
index 5b065f1f325..8629997030f 100644
--- a/source/blender/windowmanager/intern/wm_splash_screen.c
+++ b/source/blender/windowmanager/intern/wm_splash_screen.c
@@ -29,93 +29,37 @@
* - Links to web sites.
*/
-#include <float.h>
#include <string.h>
-#include <ctype.h>
-#include <stdio.h>
-#include <stddef.h>
-#include <assert.h>
-#include <errno.h>
-
-#ifdef WIN32
-# include "GHOST_C-api.h"
-#endif
-
-#include "MEM_guardedalloc.h"
#include "CLG_log.h"
#include "DNA_ID.h"
-#include "DNA_object_types.h"
#include "DNA_screen_types.h"
#include "DNA_scene_types.h"
#include "DNA_userdef_types.h"
#include "DNA_windowmanager_types.h"
-#include "DNA_workspace_types.h"
-
-#include "BLT_translation.h"
-
-#include "PIL_time.h"
#include "BLI_blenlib.h"
-#include "BLI_dial_2d.h"
-#include "BLI_dynstr.h" /*for WM_operator_pystring */
-#include "BLI_math.h"
#include "BLI_utildefines.h"
-#include "BLO_readfile.h"
-
#include "BKE_appdir.h"
#include "BKE_blender_version.h"
-#include "BKE_brush.h"
#include "BKE_context.h"
-#include "BKE_global.h"
-#include "BKE_icons.h"
-#include "BKE_idprop.h"
-#include "BKE_image.h"
-#include "BKE_library.h"
-#include "BKE_library_query.h"
-#include "BKE_main.h"
-#include "BKE_material.h"
-#include "BKE_report.h"
-#include "BKE_scene.h"
-#include "BKE_screen.h" /* BKE_ST_MAXNAME */
-#include "BKE_unit.h"
-
-#include "BKE_idcode.h"
+#include "BKE_screen.h"
#include "BLF_api.h"
-#include "GPU_immediate.h"
-#include "GPU_immediate_util.h"
-#include "GPU_matrix.h"
-#include "GPU_state.h"
-
#include "IMB_imbuf_types.h"
#include "IMB_imbuf.h"
-#include "ED_numinput.h"
#include "ED_screen.h"
-#include "ED_undo.h"
-#include "ED_view3d.h"
-
-#include "RNA_access.h"
-#include "RNA_define.h"
-#include "RNA_enum_types.h"
#include "UI_interface.h"
-#include "UI_interface_icons.h"
-#include "UI_resources.h"
#include "WM_api.h"
#include "WM_types.h"
#include "wm.h"
-#include "wm_draw.h"
-#include "wm_event_system.h"
-#include "wm_event_types.h"
-#include "wm_files.h"
-#include "wm_window.h"
static void wm_block_splash_close(bContext *C, void *arg_block, void *UNUSED(arg))
{