DolphinQt: fix Visual Studio warning about 'assignment within conditional expression'

This commit is contained in:
iwubcode 2021-05-15 14:07:16 -05:00
parent 05b1566e3f
commit 04a635e884
1 changed files with 1 additions and 2 deletions

View File

@ -66,8 +66,7 @@ FlowLayout::FlowLayout(int margin, int h_spacing, int v_spacing)
FlowLayout::~FlowLayout()
{
QLayoutItem* item;
while ((item = takeAt(0)))
while (QLayoutItem* item = takeAt(0))
delete item;
}