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 @@ 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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue