2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2015-2022 Mnemosyne LLC.
|
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
|
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2015-09-01 20:19:26 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2015-09-01 20:19:26 +00:00
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
class BaseDialog : public QDialog
|
2015-09-01 20:19:26 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
public:
|
2021-08-15 09:41:48 +00:00
|
|
|
BaseDialog(QWidget* parent = nullptr, Qt::WindowFlags flags = {})
|
|
|
|
: QDialog(parent, flags)
|
2015-09-01 20:19:26 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
2015-09-01 20:19:26 +00:00
|
|
|
}
|
|
|
|
};
|