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

Speculatively fix another bug involving deleting invalid handles.

If this handle is deleted, make sure to mark it as such.  Otherwise,
there seems to be a double delete occuring and causing issues.


git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/trunk/TableTool@8511 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
parent 96cc70bb
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
function [] = close_fig(object,src,event) function [] = close_fig(object,src,event)
if (object.validation_report_handle ~= 0) if (object.validation_report_handle ~= 0)
delete(object.validation_report_handle); delete(object.validation_report_handle);
object.validation_report_handle = 0;
end end
object.save_data; object.save_data;
object.Data.open = 0; object.Data.open = 0;
......
...@@ -7,6 +7,7 @@ object.save_call([],[]); ...@@ -7,6 +7,7 @@ object.save_call([],[]);
object.save_data; object.save_data;
if (object.validation_report_handle ~= 0) if (object.validation_report_handle ~= 0)
delete(object.validation_report_handle); delete(object.validation_report_handle);
object.validation_report_handle = 0;
end end
error = object.check_call([],2); error = object.check_call([],2);
......
...@@ -13,6 +13,7 @@ object.save_call([],[]); ...@@ -13,6 +13,7 @@ object.save_call([],[]);
object.save_data; object.save_data;
if (object.validation_report_handle ~= 0) if (object.validation_report_handle ~= 0)
delete(object.validation_report_handle); delete(object.validation_report_handle);
object.validation_report_handle = 0;
end end
error = object.check_call([],2); error = object.check_call([],2);
......
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