Sonogram: Remove unused destructor

This commit is contained in:
Jonas Kvinge
2023-03-19 19:32:23 +01:00
parent f41b051ec7
commit 12aebc2fe9
2 changed files with 0 additions and 3 deletions

View File

@@ -31,8 +31,6 @@ const char *Sonogram::kName = QT_TRANSLATE_NOOP("AnalyzerContainer", "Sonogram")
Sonogram::Sonogram(QWidget *parent)
: Analyzer::Base(parent, 9) {}
Sonogram::~Sonogram() {}
void Sonogram::resizeEvent(QResizeEvent *e) {
Q_UNUSED(e)

View File

@@ -33,7 +33,6 @@ class Sonogram : public Analyzer::Base {
Q_OBJECT
public:
Q_INVOKABLE explicit Sonogram(QWidget *parent);
~Sonogram();
static const char *kName;