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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-05-09 22:05:33 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-05-09 22:05:33 +0400
commit2385c51360014f19e1d823b8009bd7772adac8d8 (patch)
treeba9f09800da578544678d2e24425060167bd166a /source/blender/freestyle/intern/python/Interface1D/BPy_FrsCurve.cpp
parent906a7e69ca9cbce4866420b14f8ad23dea533881 (diff)
Renamed FrsCurve, FrsNoise and FrsMaterial Python extension types
to those names without the "Frs" prefix. These types are part of the Freestyle module, so that there is no need to make their names globally unique.
Diffstat (limited to 'source/blender/freestyle/intern/python/Interface1D/BPy_FrsCurve.cpp')
-rw-r--r--source/blender/freestyle/intern/python/Interface1D/BPy_FrsCurve.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/freestyle/intern/python/Interface1D/BPy_FrsCurve.cpp b/source/blender/freestyle/intern/python/Interface1D/BPy_FrsCurve.cpp
index 1ec9e3efc53..b967351f4dc 100644
--- a/source/blender/freestyle/intern/python/Interface1D/BPy_FrsCurve.cpp
+++ b/source/blender/freestyle/intern/python/Interface1D/BPy_FrsCurve.cpp
@@ -27,7 +27,7 @@ static char FrsCurve___doc__[] =
" Copy Constructor.\n"
"\n"
" :arg iBrother: A FrsCurve object.\n"
-" :type iBrother: :class:`FrsCurve`\n"
+" :type iBrother: :class:`Curve`\n"
"\n"
".. method:: __init__(iId)\n"
"\n"
@@ -154,7 +154,7 @@ static PyMethodDef BPy_FrsCurve_methods[] = {
PyTypeObject FrsCurve_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
- "FrsCurve", /* tp_name */
+ "Curve", /* tp_name */
sizeof(BPy_FrsCurve), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dealloc */