Mod: modernize C++: use equals default

This commit is contained in:
wmayer
2023-08-21 19:34:33 +02:00
committed by wwmayer
parent 09a965d595
commit 142b86fde2
13 changed files with 15 additions and 55 deletions

View File

@@ -39,13 +39,9 @@ using namespace WebGui;
/// @namespace WebGui @class Workbench
TYPESYSTEM_SOURCE(WebGui::Workbench, Gui::StdWorkbench)
Workbench::Workbench()
{
}
Workbench::Workbench() = default;
Workbench::~Workbench()
{
}
Workbench::~Workbench() = default;
void Workbench::setupContextMenu(const char* recipient,Gui::MenuItem* item) const
{