[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [20049] trunk/blender/source/gameengine/ SceneGraph: Fix compilation problem in Linux with previous commit.

Benoit Bolsee benoit.bolsee at online.be
Mon May 4 08:59:11 CEST 2009


Revision: 20049
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=20049
Author:   ben2610
Date:     2009-05-04 08:59:10 +0200 (Mon, 04 May 2009)

Log Message:
-----------
Fix compilation problem in Linux with previous commit.

Modified Paths:
--------------
    trunk/blender/source/gameengine/SceneGraph/SG_Node.h
    trunk/blender/source/gameengine/SceneGraph/SG_Spatial.h

Modified: trunk/blender/source/gameengine/SceneGraph/SG_Node.h
===================================================================
--- trunk/blender/source/gameengine/SceneGraph/SG_Node.h	2009-05-03 22:29:00 UTC (rev 20048)
+++ trunk/blender/source/gameengine/SceneGraph/SG_Node.h	2009-05-04 06:59:10 UTC (rev 20049)
@@ -85,7 +85,7 @@
 	 * @return a reference to the list of children of this node.
 	 */
 	
-	NodeList& SG_Node::GetSGChildren()
+	NodeList& GetSGChildren()
 	{
 		return this->m_children;
 	}
@@ -104,7 +104,7 @@
 	 * Clear the list of children associated with this node
 	 */
 
-	void SG_Node::ClearSGChildren()
+	void ClearSGChildren()
 	{
 		m_children.clear();
 	}

Modified: trunk/blender/source/gameengine/SceneGraph/SG_Spatial.h
===================================================================
--- trunk/blender/source/gameengine/SceneGraph/SG_Spatial.h	2009-05-03 22:29:00 UTC (rev 20048)
+++ trunk/blender/source/gameengine/SceneGraph/SG_Spatial.h	2009-05-04 06:59:10 UTC (rev 20049)
@@ -195,7 +195,7 @@
 		return m_worldScaling;
 	}
 
-	void SG_Spatial::SetWorldFromLocalTransform()
+	void SetWorldFromLocalTransform()
 	{
 		m_worldPosition= m_localPosition;
 		m_worldScaling= m_localScaling;





More information about the Bf-blender-cvs mailing list