[Scummvm-cvs-logs] SF.net SVN: scummvm:[49645] scummvm/branches/gsoc2010-testbed/engines/ testbed/testsuite.h

sud03r at users.sourceforge.net sud03r at users.sourceforge.net
Mon Jun 14 07:39:10 CEST 2010


Revision: 49645
          http://scummvm.svn.sourceforge.net/scummvm/?rev=49645&view=rev
Author:   sud03r
Date:     2010-06-14 05:39:10 +0000 (Mon, 14 Jun 2010)

Log Message:
-----------
some minor change as per CFC

Modified Paths:
--------------
    scummvm/branches/gsoc2010-testbed/engines/testbed/testsuite.h

Modified: scummvm/branches/gsoc2010-testbed/engines/testbed/testsuite.h
===================================================================
--- scummvm/branches/gsoc2010-testbed/engines/testbed/testsuite.h	2010-06-14 05:27:54 UTC (rev 49644)
+++ scummvm/branches/gsoc2010-testbed/engines/testbed/testsuite.h	2010-06-14 05:39:10 UTC (rev 49645)
@@ -18,16 +18,16 @@
 	kColorCustom = 2
 };
 
-typedef bool (*invokingFunction)();
+typedef bool (*InvokingFunction)();
 
 /**
  * This represents a feature to be tested
  */
 
 struct Test {
-	Test(Common::String name, invokingFunction f) : featureName(name), driver(f), enabled(true), passed(false) {}
+	Test(Common::String name, InvokingFunction f) : featureName(name), driver(f), enabled(true), passed(false) {}
 	Common::String featureName;		///< Name of feature to be tested
-	invokingFunction driver;	    ///< Pointer to the function that will invoke this feature test
+	InvokingFunction driver;	    ///< Pointer to the function that will invoke this feature test
 	bool enabled;				    ///< Decides whether or not this test is to be executed
 	bool passed;					///< Collects and stores result of this feature test
 };
@@ -118,7 +118,7 @@
 	 * @param	name the string description of the test, for display purposes
 	 * @param	f pointer to the function that invokes this test
 	 */
-	void addTest(const Common::String &name, invokingFunction f) {
+	void addTest(const Common::String &name, InvokingFunction f) {
 		Test*  featureTest = new Test(name, f);
 		_testsToExecute.push_back(featureTest);
 	}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list