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>2021-02-09 23:57:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-10 01:38:24 +0300
commitbdb42c2c2d08aeccef99d2d70e50186fa6fd8001 (patch)
tree1b4de2f4f3a14832187bde2e4015f0ee6955c687 /source/blender/editors/space_outliner
parent7b84a5a370a59eabfe798d8209889a2c05645854 (diff)
Cleanup: remove redundant headers in source/blender/editors/
Remove redundant headers using `./source/tools/utils_maintenance/code_clean.py` Reviewed By: jmonteath Ref D10364
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner_context.c2
-rw-r--r--source/blender/editors/space_outliner/outliner_ops.c13
-rw-r--r--source/blender/editors/space_outliner/outliner_sync.c1
-rw-r--r--source/blender/editors/space_outliner/space_outliner.c3
-rw-r--r--source/blender/editors/space_outliner/tree/tree_display.cc2
-rw-r--r--source/blender/editors/space_outliner/tree/tree_element.cc2
6 files changed, 0 insertions, 23 deletions
diff --git a/source/blender/editors/space_outliner/outliner_context.c b/source/blender/editors/space_outliner/outliner_context.c
index a314a640e42..e2b3b79e027 100644
--- a/source/blender/editors/space_outliner/outliner_context.c
+++ b/source/blender/editors/space_outliner/outliner_context.c
@@ -27,8 +27,6 @@
#include "DNA_space_types.h"
-#include "RNA_access.h"
-
#include "outliner_intern.h"
static void outliner_context_selected_ids_recursive(const ListBase *subtree,
diff --git a/source/blender/editors/space_outliner/outliner_ops.c b/source/blender/editors/space_outliner/outliner_ops.c
index acda5ae82f0..7e5b0c90714 100644
--- a/source/blender/editors/space_outliner/outliner_ops.c
+++ b/source/blender/editors/space_outliner/outliner_ops.c
@@ -21,22 +21,9 @@
* \ingroup spoutliner
*/
-#include "MEM_guardedalloc.h"
-
-#include "DNA_collection_types.h"
-
-#include "BLT_translation.h"
-
-#include "RNA_access.h"
-
-#include "UI_interface.h"
-#include "UI_view2d.h"
-
#include "WM_api.h"
-#include "WM_types.h"
#include "ED_screen.h"
-#include "ED_select_utils.h"
#include "outliner_intern.h"
diff --git a/source/blender/editors/space_outliner/outliner_sync.c b/source/blender/editors/space_outliner/outliner_sync.c
index 81b8974fba4..8bd5e3a130a 100644
--- a/source/blender/editors/space_outliner/outliner_sync.c
+++ b/source/blender/editors/space_outliner/outliner_sync.c
@@ -38,7 +38,6 @@
#include "BKE_context.h"
#include "BKE_layer.h"
#include "BKE_main.h"
-#include "BKE_object.h"
#include "DEG_depsgraph.h"
diff --git a/source/blender/editors/space_outliner/space_outliner.c b/source/blender/editors/space_outliner/space_outliner.c
index 9082e0047c6..87f81a2cc0e 100644
--- a/source/blender/editors/space_outliner/space_outliner.c
+++ b/source/blender/editors/space_outliner/space_outliner.c
@@ -31,9 +31,7 @@
#include "BLI_utildefines.h"
#include "BKE_context.h"
-#include "BKE_layer.h"
#include "BKE_outliner_treehash.h"
-#include "BKE_scene.h"
#include "BKE_screen.h"
#include "ED_screen.h"
@@ -51,7 +49,6 @@
#include "UI_resources.h"
#include "UI_view2d.h"
-#include "GPU_framebuffer.h"
#include "outliner_intern.h"
#include "tree/tree_display.h"
diff --git a/source/blender/editors/space_outliner/tree/tree_display.cc b/source/blender/editors/space_outliner/tree/tree_display.cc
index d2070fb9b1c..6632c057814 100644
--- a/source/blender/editors/space_outliner/tree/tree_display.cc
+++ b/source/blender/editors/space_outliner/tree/tree_display.cc
@@ -18,8 +18,6 @@
* \ingroup spoutliner
*/
-#include "BLI_listbase.h"
-
#include "DNA_listBase.h"
#include "tree_display.hh"
diff --git a/source/blender/editors/space_outliner/tree/tree_element.cc b/source/blender/editors/space_outliner/tree/tree_element.cc
index ce2a8fa634d..27846614994 100644
--- a/source/blender/editors/space_outliner/tree/tree_element.cc
+++ b/source/blender/editors/space_outliner/tree/tree_element.cc
@@ -20,8 +20,6 @@
#include "DNA_listBase.h"
-#include "../outliner_intern.h"
-
#include "tree_element_anim_data.hh"
#include "tree_element_driver_base.hh"
#include "tree_element_nla.hh"