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>2012-03-03 05:43:44 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-03-03 05:43:44 +0400
commit9e93fc1e8acacb99b4b7638590ca4f1491e8b587 (patch)
treee42fb8ecc337a617a98e01f6c882b890ab9387e6 /source/gameengine/Expressions/PyObjectPlus.cpp
parent00782aae1f5f3159c7afb1cb227bd8de1bc4b9c4 (diff)
parent95bba22af075148f9cbdb5a9b1ef41aeff1f560f (diff)
Merged changes in the trunk up to revision 44612.
Conflicts resolved: source/blender/blenloader/intern/readfile.c source/blender/bmesh/bmesh.h
Diffstat (limited to 'source/gameengine/Expressions/PyObjectPlus.cpp')
-rw-r--r--source/gameengine/Expressions/PyObjectPlus.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/Expressions/PyObjectPlus.cpp b/source/gameengine/Expressions/PyObjectPlus.cpp
index d50ec0f414e..e772aec28e3 100644
--- a/source/gameengine/Expressions/PyObjectPlus.cpp
+++ b/source/gameengine/Expressions/PyObjectPlus.cpp
@@ -217,7 +217,7 @@ PyObject * PyObjectPlus::py_base_new(PyTypeObject *type, PyObject *args, PyObjec
}
/**
- * @param self A PyObjectPlus_Proxy
+ * \param self A PyObjectPlus_Proxy
*/
void PyObjectPlus::py_base_dealloc(PyObject *self) // python wrapper
{
@@ -295,7 +295,7 @@ PyObject *PyObjectPlus::py_get_attrdef(PyObject *self_py, const PyAttributeDef *
}
if (attrdef->m_type == KX_PYATTRIBUTE_TYPE_FUNCTION)
{
- // the attribute has no field correspondance, handover processing to function.
+ // the attribute has no field correspondence, handover processing to function.
if (attrdef->m_getFunction == NULL)
return NULL;
return (*attrdef->m_getFunction)(ptr, attrdef);