[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [59003] trunk/blender/source/blender/ freestyle/intern/python/Interface0D/BPy_CurvePoint.cpp: Fix for docstrings of CurvePoint.first_svertex() and CurvePoint. second_svertex().

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Wed Aug 7 23:40:59 CEST 2013


Revision: 59003
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=59003
Author:   kjym3
Date:     2013-08-07 21:40:59 +0000 (Wed, 07 Aug 2013)
Log Message:
-----------
Fix for docstrings of CurvePoint.first_svertex() and CurvePoint.second_svertex().

Modified Paths:
--------------
    trunk/blender/source/blender/freestyle/intern/python/Interface0D/BPy_CurvePoint.cpp

Modified: trunk/blender/source/blender/freestyle/intern/python/Interface0D/BPy_CurvePoint.cpp
===================================================================
--- trunk/blender/source/blender/freestyle/intern/python/Interface0D/BPy_CurvePoint.cpp	2013-08-07 20:16:36 UTC (rev 59002)
+++ trunk/blender/source/blender/freestyle/intern/python/Interface0D/BPy_CurvePoint.cpp	2013-08-07 21:40:59 UTC (rev 59003)
@@ -135,7 +135,7 @@
 PyDoc_STRVAR(CurvePoint_first_svertex_doc,
 "The first SVertex upon which the CurvePoint is built.\n"
 "\n"
-":type: int");
+":type: :class:`SVertex`");
 
 static PyObject *CurvePoint_first_svertex_get(BPy_CurvePoint *self, void *UNUSED(closure))
 {
@@ -158,7 +158,7 @@
 PyDoc_STRVAR(CurvePoint_second_svertex_doc,
 "The second SVertex upon which the CurvePoint is built.\n"
 "\n"
-":type: int");
+":type: :class:`SVertex`");
 
 static PyObject *CurvePoint_second_svertex_get(BPy_CurvePoint *self, void *UNUSED(closure))
 {




More information about the Bf-blender-cvs mailing list