mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-27 19:25:49 +08:00
20 lines
661 B
C++
20 lines
661 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2019 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
#include "cockpitcomaudiodialog.h"
|
|
#include "ui_cockpitcomaudiodialog.h"
|
|
|
|
namespace BlackGui::Components
|
|
{
|
|
CCockpitComAudioDialog::CCockpitComAudioDialog(QWidget *parent) : QDialog(parent),
|
|
ui(new Ui::CCockpitComAudioDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
this->setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
}
|
|
|
|
CCockpitComAudioDialog::~CCockpitComAudioDialog()
|
|
{}
|
|
|
|
} // ns
|