[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [37934] branches/soc-2011-pepper/source/ gameengine/Ketsji: BGE Animations: Moving the BL_Action::IsDone() implementation from the header file to the source file.

Mitchell Stokes mogurijin at gmail.com
Wed Jun 29 04:45:08 CEST 2011


Revision: 37934
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=37934
Author:   moguri
Date:     2011-06-29 02:45:08 +0000 (Wed, 29 Jun 2011)
Log Message:
-----------
BGE Animations: Moving the BL_Action::IsDone() implementation from the header file to the source file.

Modified Paths:
--------------
    branches/soc-2011-pepper/source/gameengine/Ketsji/BL_Action.cpp
    branches/soc-2011-pepper/source/gameengine/Ketsji/BL_Action.h

Modified: branches/soc-2011-pepper/source/gameengine/Ketsji/BL_Action.cpp
===================================================================
--- branches/soc-2011-pepper/source/gameengine/Ketsji/BL_Action.cpp	2011-06-29 02:42:46 UTC (rev 37933)
+++ branches/soc-2011-pepper/source/gameengine/Ketsji/BL_Action.cpp	2011-06-29 02:45:08 UTC (rev 37934)
@@ -189,6 +189,11 @@
 	m_done = true;
 }
 
+bool BL_Action::IsDone()
+{
+	return m_done;
+}
+
 void BL_Action::InitIPO()
 {
 		// Initialize the IPO

Modified: branches/soc-2011-pepper/source/gameengine/Ketsji/BL_Action.h
===================================================================
--- branches/soc-2011-pepper/source/gameengine/Ketsji/BL_Action.h	2011-06-29 02:42:46 UTC (rev 37933)
+++ branches/soc-2011-pepper/source/gameengine/Ketsji/BL_Action.h	2011-06-29 02:45:08 UTC (rev 37934)
@@ -88,7 +88,7 @@
 			short ipo_flags,
 			float playback_speed);
 	void Stop();
-	bool IsDone() {return m_done;}
+	bool IsDone();
 	void Update(float curtime);
 
 	// Accessors




More information about the Bf-blender-cvs mailing list