mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 03:16:10 +00:00
Fix OptionsDialog initialization warning
This commit is contained in:
parent
0c7b8f09be
commit
b9436683d5
@ -13,11 +13,11 @@
|
||||
#include <QFileDialog>
|
||||
|
||||
OptionsDialog::OptionsDialog(MainWindow *main):
|
||||
QDialog(0), // parent may not be main
|
||||
QDialog(0), // parent must not be main
|
||||
ui(new Ui::OptionsDialog),
|
||||
main(main),
|
||||
core(Core()),
|
||||
defaultAnalLevel(1),
|
||||
ui(new Ui::OptionsDialog)
|
||||
defaultAnalLevel(1)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
setWindowFlags(windowFlags() & (~Qt::WindowContextHelpButtonHint));
|
||||
|
Loading…
Reference in New Issue
Block a user