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>2007-06-28 17:46:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-06-28 17:46:42 +0400
commit85bbc4c3e20d828f31b96cc0c146e1d9c0aa3f4d (patch)
treee3a9169e3b77d4487c6911bd059bf6b01cbce909 /source/blender/python/api2_2x/Text3d.c
parentdcc802209563dbf597def05a430132d80d991b3e (diff)
Mesh.c - added missing error checking for vert ranges and that verts are valid.
Mesh.c - removed unneeded checks for creating ints. Text3d.c - own error - setting the 3d text didnt work, 1 liner fix.
Diffstat (limited to 'source/blender/python/api2_2x/Text3d.c')
-rw-r--r--source/blender/python/api2_2x/Text3d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Text3d.c b/source/blender/python/api2_2x/Text3d.c
index 6ac6f61cbd5..57a9c74b71d 100644
--- a/source/blender/python/api2_2x/Text3d.c
+++ b/source/blender/python/api2_2x/Text3d.c
@@ -149,7 +149,7 @@ static PyMethodDef BPy_Text3d_methods[] = {
{"setName", ( PyCFunction ) Text3d_setName,
METH_VARARGS, "() - Sets Text3d Data name"},
{"setText", ( PyCFunction ) Text3d_setText,
- METH_VARARGS, "() - Sets Text3d Data"},
+ METH_O, "() - Sets Text3d Data"},
{"getText", ( PyCFunction ) Text3d_getText,
METH_NOARGS, "() - Gets Text3d Data"},
{"getDrawMode", ( PyCFunction ) Text3d_getDrawMode,