Gui: modernize C++: use equals default

This commit is contained in:
wmayer
2023-08-20 18:12:43 +02:00
parent 3e35b5f606
commit c016f1c1fb
188 changed files with 408 additions and 1124 deletions

View File

@@ -254,9 +254,7 @@ void SplashScreen::drawContents ( QPainter * painter )
AboutDialogFactory* AboutDialogFactory::factory = nullptr;
AboutDialogFactory::~AboutDialogFactory()
{
}
AboutDialogFactory::~AboutDialogFactory() = default;
QDialog *AboutDialogFactory::create(QWidget *parent) const
{
@@ -901,9 +899,7 @@ LicenseView::LicenseView(QWidget* parent)
setCentralWidget(browser);
}
LicenseView::~LicenseView()
{
}
LicenseView::~LicenseView() = default;
void LicenseView::setSource(const QUrl& url)
{