fix coverity issues

This commit is contained in:
wmayer
2017-11-18 18:07:00 +01:00
parent 532d9b230b
commit 046954a05b
3 changed files with 7 additions and 2 deletions

View File

@@ -214,7 +214,11 @@ TaskAttacher::TaskAttacher(Gui::ViewProviderDocumentObject *ViewProvider,QWidget
TaskAttacher::~TaskAttacher()
{
visibilityAutomation(false);
try {
visibilityAutomation(false);
}
catch (...) {
}
connectDelObject.disconnect();
delete ui;