diff options
author | Neeraj Kumar | 2010-06-14 05:39:10 +0000 |
---|---|---|
committer | Neeraj Kumar | 2010-06-14 05:39:10 +0000 |
commit | 889013b54623930f49e834010fd394e774dd9dd7 (patch) | |
tree | ad39e662741894f832c52c125cefe2099bed4453 /engines | |
parent | 3c511eab1a3c9e3be7125a6159265e0f5e25beed (diff) | |
download | scummvm-rg350-889013b54623930f49e834010fd394e774dd9dd7.tar.gz scummvm-rg350-889013b54623930f49e834010fd394e774dd9dd7.tar.bz2 scummvm-rg350-889013b54623930f49e834010fd394e774dd9dd7.zip |
some minor change as per CFC
svn-id: r49645
Diffstat (limited to 'engines')
-rw-r--r-- | engines/testbed/testsuite.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/testbed/testsuite.h b/engines/testbed/testsuite.h index 45ed5f1a6f..b44e2f2e7f 100644 --- a/engines/testbed/testsuite.h +++ b/engines/testbed/testsuite.h @@ -18,16 +18,16 @@ enum { 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 @@ public: * @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); } |