mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 07:24:33 +02:00
Merge pull request #12947 from Dentomologist/qtutils_clearlayoutrecursively_fix_potential_crash
QtUtils/ClearLayoutRecursively: Fix potential crash
This commit is contained in:
@@ -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())
|
||||
{
|
||||
|
Reference in New Issue
Block a user