mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
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:
parent
70ba5263af
commit
49691213c9
75 changed files with 860 additions and 854 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue