LogitechMicWindow: Remove unnecessary destructor.

This commit is contained in:
Jordan Woyak 2025-11-09 17:28:15 -06:00
parent 366bdbfb3a
commit ba7d6621ee
2 changed files with 0 additions and 3 deletions

View File

@ -37,8 +37,6 @@ LogitechMicWindow::LogitechMicWindow(QWidget* parent) : QWidget(parent)
OnEmulationStateChanged(Core::GetState(Core::System::GetInstance()));
}
LogitechMicWindow::~LogitechMicWindow() = default;
void LogitechMicWindow::CreateMainWindow()
{
auto* main_layout = new QVBoxLayout();

View File

@ -16,7 +16,6 @@ class LogitechMicWindow : public QWidget
Q_OBJECT
public:
explicit LogitechMicWindow(QWidget* parent = nullptr);
~LogitechMicWindow() override;
private:
void CreateMainWindow();