From 3bd0b8971615d6ddc309aa33a40f7ebf0c25b0c6 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Sat, 23 Feb 2013 18:50:33 +0000 Subject: Code style clean-up. --- source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.h') diff --git a/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.h b/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.h index 188d7a00da0..5ad894ce636 100644 --- a/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.h +++ b/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.h @@ -29,8 +29,8 @@ * \ingroup freestyle */ -#ifndef FREESTYLE_PYTHON_STROKE_H -#define FREESTYLE_PYTHON_STROKE_H +#ifndef __FREESTYLE_PYTHON_STROKE_H__ +#define __FREESTYLE_PYTHON_STROKE_H__ #include "../BPy_Interface1D.h" #include "../../stroke/Stroke.h" @@ -45,7 +45,7 @@ extern "C" { extern PyTypeObject Stroke_Type; -#define BPy_Stroke_Check(v) (( (PyObject *) v)->ob_type == &Stroke_Type) +#define BPy_Stroke_Check(v) (((PyObject *)v)->ob_type == &Stroke_Type) /*---------------------------Python BPy_Stroke structure definition----------*/ typedef struct { @@ -59,4 +59,4 @@ typedef struct { } #endif -#endif /* FREESTYLE_PYTHON_STROKE_H */ +#endif /* __FREESTYLE_PYTHON_STROKE_H__ */ -- cgit v1.2.3