mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 19:28:43 +12:00
[Qt] Delete "ui" pointer in destructor
This commit is contained in:
parent
cd4b28b4d7
commit
f39e2b999f
7 changed files with 19 additions and 0 deletions
|
@ -35,3 +35,8 @@ welcome_dialog::welcome_dialog(QWidget* parent) : QDialog(parent), ui(new Ui::we
|
|||
|
||||
layout()->setSizeConstraint(QLayout::SetFixedSize);
|
||||
}
|
||||
|
||||
welcome_dialog::~welcome_dialog()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue