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/BPy_SShape.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source/blender/freestyle/intern/python/BPy_SShape.h') diff --git a/source/blender/freestyle/intern/python/BPy_SShape.h b/source/blender/freestyle/intern/python/BPy_SShape.h index 4c0a57436fa..3f253c33da5 100644 --- a/source/blender/freestyle/intern/python/BPy_SShape.h +++ b/source/blender/freestyle/intern/python/BPy_SShape.h @@ -29,8 +29,8 @@ * \ingroup freestyle */ -#ifndef FREESTYLE_PYTHON_SSHAPE_H -#define FREESTYLE_PYTHON_SSHAPE_H +#ifndef __FREESTYLE_PYTHON_SSHAPE_H__ +#define __FREESTYLE_PYTHON_SSHAPE_H__ #include @@ -44,7 +44,7 @@ extern "C" { extern PyTypeObject SShape_Type; -#define BPy_SShape_Check(v) ( PyObject_IsInstance( (PyObject *) v, (PyObject *) &SShape_Type) ) +#define BPy_SShape_Check(v) (PyObject_IsInstance((PyObject *)v, (PyObject *)&SShape_Type)) /*---------------------------Python BPy_SShape structure definition----------*/ typedef struct { @@ -55,7 +55,7 @@ typedef struct { /*---------------------------Python BPy_SShape visible prototypes-----------*/ -int SShape_Init( PyObject *module ); +int SShape_Init(PyObject *module); /////////////////////////////////////////////////////////////////////////////////////////// @@ -63,4 +63,4 @@ int SShape_Init( PyObject *module ); } #endif -#endif /* FREESTYLE_PYTHON_SSHAPE_H */ +#endif /* __FREESTYLE_PYTHON_SSHAPE_H__ */ -- cgit v1.2.3