PD: Fix coverity issue:

* CID 350645: Uncaught exception
This commit is contained in:
wmayer
2022-03-13 17:24:07 +01:00
parent d5aa8986f1
commit 09259451d2

View File

@@ -356,7 +356,12 @@ SubShapeBinder::SubShapeBinder()
}
SubShapeBinder::~SubShapeBinder() {
clearCopiedObjects();
try {
clearCopiedObjects();
}
catch (const Base::ValueError& e) {
e.ReportException();
}
}
void SubShapeBinder::setupObject() {