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>2012-03-09 22:28:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-09 22:28:30 +0400
commit89a963fb7fdff543b77de790355b9dac3019bd33 (patch)
tree4e1d2245e20f8c21625e99d771776f66c233a0de /source/gameengine/Expressions/PyObjectPlus.h
parentde4bd55e01bc574c13977537ace1a0901dcfcaf0 (diff)
style cleanup: comment blocks
Diffstat (limited to 'source/gameengine/Expressions/PyObjectPlus.h')
-rw-r--r--source/gameengine/Expressions/PyObjectPlus.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/gameengine/Expressions/PyObjectPlus.h b/source/gameengine/Expressions/PyObjectPlus.h
index e3701b8793c..6de0f3fa8d5 100644
--- a/source/gameengine/Expressions/PyObjectPlus.h
+++ b/source/gameengine/Expressions/PyObjectPlus.h
@@ -609,10 +609,10 @@ public:
static PyObject *GetProxyPlus_Ext(PyObjectPlus *self, PyTypeObject *tp, void *ptr);
/* self=NULL => proxy to generic pointer detached from GE object
- if py_owns is true, the memory pointed by ptr will be deleted automatically with MEM_freeN
- self!=NULL=> proxy attached to GE object, ptr is optional and point to a struct from which attributes can be defined
- if py_owns is true, the object will be deleted automatically, ptr will NOT be deleted
- (assume object destructor takes care of it) */
+ * if py_owns is true, the memory pointed by ptr will be deleted automatically with MEM_freeN
+ * self!=NULL=> proxy attached to GE object, ptr is optional and point to a struct from which attributes can be defined
+ * if py_owns is true, the object will be deleted automatically, ptr will NOT be deleted
+ * (assume object destructor takes care of it) */
static PyObject *NewProxyPlus_Ext(PyObjectPlus *self, PyTypeObject *tp, void *ptr, bool py_owns);
static WarnLink* GetDeprecationWarningLinkFirst(void);