[Bf-blender-cvs] [738adf2] temp_widgets_update_tagging: Correct include guard, remove unnecessary include and struct declarations

Julian Eisel noreply at git.blender.org
Tue May 10 03:08:52 CEST 2016


Commit: 738adf2d6a858bafc2f6d2799883330c8b17d7e5
Author: Julian Eisel
Date:   Tue May 10 03:04:36 2016 +0200
Branches: temp_widgets_update_tagging
https://developer.blender.org/rB738adf2d6a858bafc2f6d2799883330c8b17d7e5

Correct include guard, remove unnecessary include and struct declarations

===================================================================

M	source/blender/makesdna/DNA_widget_types.h

===================================================================

diff --git a/source/blender/makesdna/DNA_widget_types.h b/source/blender/makesdna/DNA_widget_types.h
index b1ae316..9d77eab 100644
--- a/source/blender/makesdna/DNA_widget_types.h
+++ b/source/blender/makesdna/DNA_widget_types.h
@@ -29,13 +29,8 @@
  *  \ingroup DNA
  */
 
-#ifndef __DNA_WM_WIDGET_TYPES_H__
-#define __DNA_WM_WIDGET_TYPES_H__
-
-#include "DNA_vec_types.h"
-
-struct bContext;
-struct wmEvent;
+#ifndef __DNA_WIDGET_TYPES_H__
+#define __DNA_WIDGET_TYPES_H__
 
 typedef enum WidgetType {
 	WT_TRANSLATE = 0,
@@ -59,4 +54,4 @@ typedef struct wmWidgetGroup {
 	int pad;
 } wmWidgetGroup;
 
-#endif
+#endif /* __DNA_WIDGET_TYPES_H__ */




More information about the Bf-blender-cvs mailing list