Skip to content
Snippets Groups Projects
Commit 96cc70bb authored by Matthew Dawson's avatar Matthew Dawson
Browse files

Speculative bug fix, TableBlock has static functions, no object.

When saving, delete_recursive tried to call down into an object.  That
object doesn't exist, and its trying to be recursive.  Instead have it
call it self statically.


git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/trunk/TableTool@8510 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
parent 24955f3c
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ end
LineChild = get( line_handle, 'LineChildren' ) ;
if ~isempty( LineChild )
for i=1:length( LineChild )
obj.delete_recursive( LineChild( i ) );
TableBlock.delete_recursive( LineChild( i ) );
end
else
if get( line_handle, 'DstPortHandle' ) < 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment