Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2002-10-30 05:07:20 +0300
committerKent Mein <mein@cs.umn.edu>2002-10-30 05:07:20 +0300
commit01bff7038323d617fbc83a39e9072631ccbdd65f (patch)
tree2ca70b537a273af35eb5c85c7bd55712fb112dcd /source/blender/bpython/intern
parentf6c7a8935762c5bf7ff77a0e7d5d63554c5eb80d (diff)
fixed spacing in the headers to get rid of some warnings and some other
little minor spacing issues.
Diffstat (limited to 'source/blender/bpython/intern')
-rw-r--r--source/blender/bpython/intern/BPY_csg.h1
-rw-r--r--source/blender/bpython/intern/BPY_listbase_macro.h1
-rw-r--r--source/blender/bpython/intern/BPY_macros.h1
-rw-r--r--source/blender/bpython/intern/BPY_main.h1
-rw-r--r--source/blender/bpython/intern/BPY_modules.h2
-rw-r--r--source/blender/bpython/intern/BPY_tools.h1
-rw-r--r--source/blender/bpython/intern/BPY_types.h1
-rw-r--r--source/blender/bpython/intern/api.h1
-rw-r--r--source/blender/bpython/intern/b_import.h1
-rw-r--r--source/blender/bpython/intern/b_interface.h2
-rw-r--r--source/blender/bpython/intern/opy_datablock.h1
-rw-r--r--source/blender/bpython/intern/opy_nmesh.h1
-rw-r--r--source/blender/bpython/intern/opy_vector.h1
13 files changed, 10 insertions, 5 deletions
diff --git a/source/blender/bpython/intern/BPY_csg.h b/source/blender/bpython/intern/BPY_csg.h
index 8b4a829a057..3f28168107f 100644
--- a/source/blender/bpython/intern/BPY_csg.h
+++ b/source/blender/bpython/intern/BPY_csg.h
@@ -33,3 +33,4 @@
#include "opy_datablock.h"
#include "b_interface.h"
+
diff --git a/source/blender/bpython/intern/BPY_listbase_macro.h b/source/blender/bpython/intern/BPY_listbase_macro.h
index 5c5047d22d8..cee7f958283 100644
--- a/source/blender/bpython/intern/BPY_listbase_macro.h
+++ b/source/blender/bpython/intern/BPY_listbase_macro.h
@@ -60,3 +60,4 @@
#define GETLISTFUNC(x) _GETLIST(x)
// Prototype for the above function
#define GETLISTPROTO(x) PyObject *_GETLIST(x)(PyObject *, PyObject *)
+
diff --git a/source/blender/bpython/intern/BPY_macros.h b/source/blender/bpython/intern/BPY_macros.h
index 9f9bea4864a..478e2d2c328 100644
--- a/source/blender/bpython/intern/BPY_macros.h
+++ b/source/blender/bpython/intern/BPY_macros.h
@@ -266,3 +266,4 @@ static PyObject *type##_clrIpo(PyObject *self, PyObject *args) \
#define PYBLOCK_AS_LAMP(x) PYBLOCK_AS(Lamp, x)
#define PYBLOCK_AS_IPO(x) PYBLOCK_AS(Ipo, x)
#define PYBLOCK_AS_DATA(x) PYBLOCK_AS(void, x)
+
diff --git a/source/blender/bpython/intern/BPY_main.h b/source/blender/bpython/intern/BPY_main.h
index 526aa21df8f..b07e222f51a 100644
--- a/source/blender/bpython/intern/BPY_main.h
+++ b/source/blender/bpython/intern/BPY_main.h
@@ -84,3 +84,4 @@ void syspath_append(PyObject *dir);
void init_syspath(void);
void set_scriptlinks(ID *id, short event);
void release_scriptlinks(ID *id);
+
diff --git a/source/blender/bpython/intern/BPY_modules.h b/source/blender/bpython/intern/BPY_modules.h
index 98f9170fe9b..f1c91d23bc8 100644
--- a/source/blender/bpython/intern/BPY_modules.h
+++ b/source/blender/bpython/intern/BPY_modules.h
@@ -43,5 +43,3 @@ void init_py_matrix(void);
void init_Datablockmodules(PyObject *dict);
void initGUI(void);
-
-
diff --git a/source/blender/bpython/intern/BPY_tools.h b/source/blender/bpython/intern/BPY_tools.h
index 902c15686f0..d360faa883a 100644
--- a/source/blender/bpython/intern/BPY_tools.h
+++ b/source/blender/bpython/intern/BPY_tools.h
@@ -35,3 +35,4 @@ extern PyObject *BPY_err_ret_ob (PyObject *type, char *err);
extern int py_err_ret_int (PyObject *type, char *err);
extern int BPY_check_sequence_consistency (PyObject *seq, PyTypeObject *against);
extern int BPY_parsefloatvector(PyObject *vec, float *ptr, int n);
+
diff --git a/source/blender/bpython/intern/BPY_types.h b/source/blender/bpython/intern/BPY_types.h
index 217275f6e10..adfcd748f94 100644
--- a/source/blender/bpython/intern/BPY_types.h
+++ b/source/blender/bpython/intern/BPY_types.h
@@ -37,3 +37,4 @@ extern PyTypeObject Vector_Type, Matrix_Type;
extern PyTypeObject DataBlock_Type;
extern struct PyMethodDef Null_methods[];
+
diff --git a/source/blender/bpython/intern/api.h b/source/blender/bpython/intern/api.h
index 1de41039b9a..785891e3816 100644
--- a/source/blender/bpython/intern/api.h
+++ b/source/blender/bpython/intern/api.h
@@ -85,3 +85,4 @@ MODNAME(BLENDERMODULE) -> "_Blender"
#ifdef EXPERIMENTAL
#undef USE_NMESH
#endif
+
diff --git a/source/blender/bpython/intern/b_import.h b/source/blender/bpython/intern/b_import.h
index 2bc191942ca..d469b7c1f84 100644
--- a/source/blender/bpython/intern/b_import.h
+++ b/source/blender/bpython/intern/b_import.h
@@ -33,3 +33,4 @@
PyObject *importText (char *name);
PyObject *blender_import (PyObject *self, PyObject *args);
void init_ourImport (void);
+
diff --git a/source/blender/bpython/intern/b_interface.h b/source/blender/bpython/intern/b_interface.h
index b2af2280f1f..db3c3f065d6 100644
--- a/source/blender/bpython/intern/b_interface.h
+++ b/source/blender/bpython/intern/b_interface.h
@@ -180,5 +180,3 @@ void mesh_update(Mesh *me);
/* blender's program name */
extern char bprogname[]; /* init in creator.c */
-
-
diff --git a/source/blender/bpython/intern/opy_datablock.h b/source/blender/bpython/intern/opy_datablock.h
index 437b551a754..2c4a60fd5a3 100644
--- a/source/blender/bpython/intern/opy_datablock.h
+++ b/source/blender/bpython/intern/opy_datablock.h
@@ -191,3 +191,4 @@ struct Material;
struct
Material **newMaterialList_fromPyList(PyObject *list);
PyObject *PyList_fromMaterialList(struct Material **matlist, int len);
+
diff --git a/source/blender/bpython/intern/opy_nmesh.h b/source/blender/bpython/intern/opy_nmesh.h
index 778a726b26e..d8d6f2ae9ee 100644
--- a/source/blender/bpython/intern/opy_nmesh.h
+++ b/source/blender/bpython/intern/opy_nmesh.h
@@ -91,3 +91,4 @@ PyObject *newNMesh(Mesh *oldmesh);
Mesh *Mesh_fromNMesh(NMesh *nmesh);
PyObject *NMesh_assignMaterials_toObject(NMesh *nmesh, Object *ob);
Material **nmesh_updateMaterials(NMesh *nmesh);
+
diff --git a/source/blender/bpython/intern/opy_vector.h b/source/blender/bpython/intern/opy_vector.h
index cf7ca87fd6a..10535fe5ae2 100644
--- a/source/blender/bpython/intern/opy_vector.h
+++ b/source/blender/bpython/intern/opy_vector.h
@@ -60,4 +60,3 @@ PyObject *newMatrixObject(Matrix4Ptr mat);
void init_py_matrix(void);
void init_py_vector(void);
-