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 @@ PythonThingScript::~PythonThingScript()
bool PythonThingScript::Operation(const std::string & op_type,
const RootOperation & op,
oplist & ret_list, RootOperation * sub_op)
OpVector & ret_list, RootOperation * sub_op)
{
if (scriptObject == NULL) {
debug( std::cout << "No script object asociated" << std::endl
@ -69,7 +69,7 @@ bool PythonThingScript::Operation(const std::string & op_type,
if (op->ops != NULL) {
ret_list = *op->ops;
} else {
debug( std::cout << "Method returned invalid oplist"
debug( std::cout << "Method returned invalid OpVector"
<< std::endl << std::flush;);
}
} else {