fix: add missing destructor definitions in .cpp files

- Added destructor definitions (= default) to all classes that had them declared in header but not defined
- Fixes 'undefined reference to destructor' linker errors across 30+ classes
- Covers services, UI components, and synchronizers
This commit is contained in:
2026-08-28 13:45:21 +02:00
parent 8bc04ef596
commit d86df8ce51
48 changed files with 58 additions and 1377 deletions
+1 -1
View File
@@ -687,4 +687,4 @@ void AccountSetupDialog::showError(const QString &message)
m_btnCancel->setVisible(true);
m_btnNext->setVisible(false);
}
AccountSetupDialog::~AccountSetupDialog() = default;