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:
authorCampbell Barton <ideasman42@gmail.com>2015-07-24 02:45:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-24 02:45:25 +0300
commitea3dae74d870864f6e9d329056ad2b219ae9f81c (patch)
treec6a2bdefdc26e431279785eb18ce761143a43f6e
parent3b362950e9329fdc086728d7b150eff16a7e8c53 (diff)
Cleanup: remove redundant __doc__ from bgl
-rw-r--r--source/blender/python/generic/bgl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/generic/bgl.c b/source/blender/python/generic/bgl.c
index b24a29a0785..700b821d605 100644
--- a/source/blender/python/generic/bgl.c
+++ b/source/blender/python/generic/bgl.c
@@ -1425,8 +1425,8 @@ BGLU_Wrap(UnProject, GLint, (GLdouble, GLdouble, GLdouble, GLdouble
/** \name Module Definition
* \{ */
-#define MethodDef(func) {"gl"#func, Method_##func, METH_VARARGS, "no string"}
-#define MethodDefu(func) {"glu"#func, Method_##func, METH_VARARGS, "no string"}
+#define MethodDef(func) {"gl"#func, Method_##func, METH_VARARGS, NULL}
+#define MethodDefu(func) {"glu"#func, Method_##func, METH_VARARGS, NULL}
/* So that MethodDef(Accum) becomes:
* {"glAccum", Method_Accumfunc, METH_VARARGS} */