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>2012-08-02 00:39:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-02 00:39:14 +0400
commit829c48a9918a8ce4e37cbb42d341551a761b7c81 (patch)
treece0ba4541e8616d81b5450f3d92af14260fe4ceb /source/blender/editors/space_node/node_edit.c
parent8a0f6aa2f27c84e12def8a0f0a0b408563afb192 (diff)
code cleanup: headers
Diffstat (limited to 'source/blender/editors/space_node/node_edit.c')
-rw-r--r--source/blender/editors/space_node/node_edit.c26
1 files changed, 2 insertions, 24 deletions
diff --git a/source/blender/editors/space_node/node_edit.c b/source/blender/editors/space_node/node_edit.c
index 481c6544255..4b554185933 100644
--- a/source/blender/editors/space_node/node_edit.c
+++ b/source/blender/editors/space_node/node_edit.c
@@ -29,32 +29,17 @@
* \ingroup spnode
*/
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <math.h>
-#include <string.h>
-#include <errno.h>
-
#include "MEM_guardedalloc.h"
-#include "DNA_ID.h"
#include "DNA_lamp_types.h"
#include "DNA_material_types.h"
#include "DNA_node_types.h"
#include "DNA_object_types.h"
-#include "DNA_particle_types.h"
-#include "DNA_scene_types.h"
#include "DNA_world_types.h"
-#include "DNA_action_types.h"
-#include "DNA_anim_types.h"
#include "BLI_math.h"
#include "BLI_blenlib.h"
-#include "BLI_utildefines.h"
-#include "BKE_action.h"
-#include "BKE_animsys.h"
#include "BKE_context.h"
#include "BKE_depsgraph.h"
#include "BKE_global.h"
@@ -63,18 +48,16 @@
#include "BKE_main.h"
#include "BKE_node.h"
#include "BKE_material.h"
-#include "BKE_modifier.h"
#include "BKE_paint.h"
#include "BKE_scene.h"
#include "BKE_screen.h"
#include "BKE_texture.h"
-#include "BKE_report.h"
#include "RE_pipeline.h"
#include "IMB_imbuf_types.h"
-#include "ED_node.h"
+#include "ED_node.h" /* own include */
#include "ED_image.h"
#include "ED_screen.h"
#include "ED_space_api.h"
@@ -82,23 +65,18 @@
#include "RNA_access.h"
#include "RNA_define.h"
-#include "RNA_enum_types.h"
#include "WM_api.h"
#include "WM_types.h"
-#include "UI_interface.h"
-#include "UI_resources.h"
#include "UI_view2d.h"
#include "IMB_imbuf.h"
-#include "RNA_enum_types.h"
#include "GPU_material.h"
-#include "node_intern.h"
-#include "NOD_socket.h"
+#include "node_intern.h" /* own include */
/* ***************** composite job manager ********************** */