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-03 03:03:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-03 03:03:16 +0400
commitdb8c9c24f669d01ba76b9d29d80911d5c96a27a6 (patch)
tree58b328c2f40027b5fc2afc1e45d746e7c20e87d1 /source/blender/editors/space_node/node_header.c
parentffd8352f563f228793c7fa4457ff9fdb6c26d6ba (diff)
code cleanup: remove unused includes
Diffstat (limited to 'source/blender/editors/space_node/node_header.c')
-rw-r--r--source/blender/editors/space_node/node_header.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/source/blender/editors/space_node/node_header.c b/source/blender/editors/space_node/node_header.c
index d4cfa2a3ba2..6114323ff02 100644
--- a/source/blender/editors/space_node/node_header.c
+++ b/source/blender/editors/space_node/node_header.c
@@ -28,13 +28,10 @@
* \ingroup spnode
*/
-
#include <string.h>
-#include <stdio.h>
#include "DNA_space_types.h"
#include "DNA_node_types.h"
-#include "DNA_scene_types.h"
#include "DNA_screen_types.h"
#include "MEM_guardedalloc.h"
@@ -51,17 +48,12 @@
#include "BKE_scene.h"
#include "BKE_screen.h"
-#include "RNA_access.h"
-
#include "WM_api.h"
#include "WM_types.h"
-#include "UI_interface.h"
-#include "UI_interface_icons.h"
-#include "UI_resources.h"
#include "UI_view2d.h"
-#include "node_intern.h"
+#include "node_intern.h" /* own include */
/* ************************ add menu *********************** */
@@ -255,4 +247,3 @@ void node_menus_register(void)
mt->draw= node_menu_add;
WM_menutype_add(mt);
}
-