mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 03:24:59 +00:00
Merge pull request #12947 from Dentomologist/qtutils_clearlayoutrecursively_fix_potential_crash
QtUtils/ClearLayoutRecursively: Fix potential crash
This commit is contained in:
commit
9ae560d8a0
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ void ClearLayoutRecursively(QLayout* layout)
|
|||
if (child->widget())
|
||||
{
|
||||
layout->removeWidget(child->widget());
|
||||
delete child->widget();
|
||||
child->widget()->deleteLater();
|
||||
}
|
||||
else if (child->layout())
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue