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>2013-03-29 10:21:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-29 10:21:28 +0400
commitab41583bc2be591c0af921b243158e43a94505d7 (patch)
tree0273fcb73c9cd6fca9a6bf5bb687b1e9ac75a7b7 /source/gameengine/Expressions
parentc82617405642273d955e3f5a1e1a8beda129f97f (diff)
style cleanup
Diffstat (limited to 'source/gameengine/Expressions')
-rw-r--r--source/gameengine/Expressions/Value.h2
-rw-r--r--source/gameengine/Expressions/VoidValue.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/Expressions/Value.h b/source/gameengine/Expressions/Value.h
index 580691d88c4..e9bb6b1ba3c 100644
--- a/source/gameengine/Expressions/Value.h
+++ b/source/gameengine/Expressions/Value.h
@@ -222,7 +222,7 @@ public:
virtual CValue *ConvertPythonToValue(PyObject *pyobj, const char *error_prefix);
- static PyObject *pyattr_get_name(void * self, const KX_PYATTRIBUTE_DEF * attrdef);
+ static PyObject *pyattr_get_name(void *self, const KX_PYATTRIBUTE_DEF *attrdef);
virtual PyObject *ConvertKeysToPython( void );
#endif /* WITH_PYTHON */
diff --git a/source/gameengine/Expressions/VoidValue.h b/source/gameengine/Expressions/VoidValue.h
index e97278b3142..832f75c9c9f 100644
--- a/source/gameengine/Expressions/VoidValue.h
+++ b/source/gameengine/Expressions/VoidValue.h
@@ -46,7 +46,7 @@ class CVoidValue : public CPropValue
public:
/// Construction/destruction
CVoidValue() : m_bDeleteOnDestruct(false), m_pAnything(NULL) { }
- CVoidValue(void * voidptr, bool bDeleteOnDestruct, AllocationTYPE alloctype) :
+ CVoidValue(void *voidptr, bool bDeleteOnDestruct, AllocationTYPE alloctype) :
m_bDeleteOnDestruct(bDeleteOnDestruct),
m_pAnything(voidptr)
{