Another round in the Great BPy Cleanup:
Run everything thru indent to cleanup spaces vs tabs. Clean up some of the comments by hand. BGL.c was not touched due to all that macro wackyness. There are no functional changes to the code. Pre-indent versions of source are tagged with tag bpy-cleanup-20040925 , just in case.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
/*
|
||||
* $Id$
|
||||
*
|
||||
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
|
||||
*
|
||||
@@ -43,20 +44,19 @@
|
||||
/*****************************************************************************/
|
||||
/* Python API function prototypes for the constant module. */
|
||||
/*****************************************************************************/
|
||||
PyObject *M_constant_New (void);
|
||||
PyObject *M_constant_New( void );
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Python BPy_constant structure definition: */
|
||||
/*****************************************************************************/
|
||||
typedef struct {
|
||||
PyObject_HEAD
|
||||
PyObject *dict;
|
||||
PyObject_HEAD PyObject * dict;
|
||||
|
||||
} BPy_constant;
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Python BPy_constant methods declarations: */
|
||||
/*****************************************************************************/
|
||||
int constant_insert(BPy_constant *self, char *name, PyObject *value);
|
||||
int constant_insert( BPy_constant * self, char *name, PyObject * value );
|
||||
|
||||
#endif /* EXPP_constant_H */
|
||||
#endif /* EXPP_constant_H */
|
||||
|
||||
Reference in New Issue
Block a user