From 2fb82920059257fd7ac8e33bfe53de13e7ed53bd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 16 Sep 2012 04:58:18 +0000 Subject: style cleanup --- source/gameengine/VideoTexture/PyTypeList.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'source/gameengine/VideoTexture/PyTypeList.h') diff --git a/source/gameengine/VideoTexture/PyTypeList.h b/source/gameengine/VideoTexture/PyTypeList.h index aa1df0ce54b..4872b3c3d5c 100644 --- a/source/gameengine/VideoTexture/PyTypeList.h +++ b/source/gameengine/VideoTexture/PyTypeList.h @@ -49,16 +49,16 @@ public: ~PyTypeList(); /// check, if type is in list - bool in (PyTypeObject * type); + bool in (PyTypeObject *type); /// add type to list - void add (PyTypeObject * type, const char * name); + void add (PyTypeObject *type, const char * name); /// prepare types bool ready (void); /// register types to module - void reg (PyObject * module); + void reg(PyObject *module); protected: /// pointer to list of types @@ -71,21 +71,21 @@ class PyTypeListItem { public: /// constructor adds type into list - PyTypeListItem (PyTypeObject * type, const char * name) + PyTypeListItem (PyTypeObject *type, const char * name) : m_type(type), m_name(name) { } /// does type match - PyTypeObject * getType (void) { return m_type; } + PyTypeObject *getType (void) { return m_type; } /// get name of type const char * getName (void) { return m_name; } protected: /// pointer to type object - PyTypeObject * m_type; + PyTypeObject *m_type; /// name of type - const char * m_name; + const char *m_name; }; -- cgit v1.2.3