[Bf-blender-cvs] [e097e0c8338] master: Cleanup: header guard names

Campbell Barton noreply at git.blender.org
Wed Feb 27 10:03:24 CET 2019


Commit: e097e0c8338bd3f96a1a84cf9c3ba0c0635caca6
Author: Campbell Barton
Date:   Wed Feb 27 19:58:06 2019 +1100
Branches: master
https://developer.blender.org/rBe097e0c8338bd3f96a1a84cf9c3ba0c0635caca6

Cleanup: header guard names

Missed in file rename.

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

M	source/blender/blenkernel/BKE_light.h
M	source/blender/makesdna/DNA_light_types.h

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

diff --git a/source/blender/blenkernel/BKE_light.h b/source/blender/blenkernel/BKE_light.h
index 7625d5db9e4..c0bac890364 100644
--- a/source/blender/blenkernel/BKE_light.h
+++ b/source/blender/blenkernel/BKE_light.h
@@ -17,8 +17,8 @@
  * All rights reserved.
  */
 
-#ifndef __BKE_LAMP_H__
-#define __BKE_LAMP_H__
+#ifndef __BKE_LIGHT_H__
+#define __BKE_LIGHT_H__
 
 /** \file
  * \ingroup bke
diff --git a/source/blender/makesdna/DNA_light_types.h b/source/blender/makesdna/DNA_light_types.h
index 034fc755d1f..b2bbb56c12c 100644
--- a/source/blender/makesdna/DNA_light_types.h
+++ b/source/blender/makesdna/DNA_light_types.h
@@ -21,8 +21,8 @@
  * \ingroup DNA
  */
 
-#ifndef __DNA_LAMP_TYPES_H__
-#define __DNA_LAMP_TYPES_H__
+#ifndef __DNA_LIGHT_TYPES_H__
+#define __DNA_LIGHT_TYPES_H__
 
 #include "DNA_defs.h"
 #include "DNA_ID.h"
@@ -147,4 +147,4 @@ typedef struct Light {
 #define LA_AREA_DISK	4
 #define LA_AREA_ELLIPSE	5
 
-#endif /* __DNA_LAMP_TYPES_H__ */
+#endif /* __DNA_LIGHT_TYPES_H__ */



More information about the Bf-blender-cvs mailing list