Inspection: modernize C++: use equals default

This commit is contained in:
wmayer
2023-08-21 13:44:55 +02:00
committed by wwmayer
parent d525e0d308
commit edb477a795
7 changed files with 16 additions and 44 deletions

View File

@@ -33,13 +33,9 @@ using namespace InspectionGui;
/// @namespace InspectionGui @class Workbench
TYPESYSTEM_SOURCE(InspectionGui::Workbench, Gui::StdWorkbench)
Workbench::Workbench()
{
}
Workbench::Workbench() = default;
Workbench::~Workbench()
{
}
Workbench::~Workbench() = default;
Gui::MenuItem* Workbench::setupMenuBar() const
{