2002-03-08 Al Riddoch <alriddoch@zepler.org>

* Changed typedef names to ones which make more sense, and are
	  clearer. There is no change in functionality in this commit.
This commit is contained in:
Al Riddoch 2002-03-08 14:58:40 +00:00
parent 70ba5263af
commit 49691213c9
75 changed files with 860 additions and 854 deletions

View file

@ -27,7 +27,7 @@ PythonMindScript::~PythonMindScript()
bool PythonMindScript::Operation(const std::string & op_type,
const RootOperation & op,
oplist & ret_list, RootOperation * sub_op)
OpVector & ret_list, RootOperation * sub_op)
{
debug( std::cout << "Got script object for " << std::endl << std::flush;);
std::string op_name = op_type+"_operation";
@ -75,7 +75,7 @@ bool PythonMindScript::Operation(const std::string & op_type,
if (op->ops != NULL) {
ret_list = *op->ops;
} else {
debug(std::cout << "Method returned invalid oplist" << std::endl
debug(std::cout << "Method returned invalid OpVector" << std::endl
<< std::flush;);
}
} else {