Skip to content

Commit

Permalink
Fix logic in QgsUserInputWidget which incorrectly deletes other widge…
Browse files Browse the repository at this point in the history
…ts whenever one existing widget is deleted
  • Loading branch information
github-actions[bot] authored and nyalldawson committed Oct 28, 2020
1 parent 497e313 commit c1adeb0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/gui/qgsuserinputwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ void QgsUserInputWidget::widgetDestroyed( QObject *obj )
if ( obj->isWidgetType() )
{
QWidget *w = qobject_cast<QWidget *>( obj );
QMap<QWidget *, QFrame *>::iterator i = mWidgetList.find( w );
while ( i != mWidgetList.end() )
auto it = mWidgetList.find( w );
if ( it != mWidgetList.end() )
{
if ( auto *lValue = i.value() )
if ( QFrame *frame = it.value() )
{
lValue->deleteLater();
frame->deleteLater();
}
i = mWidgetList.erase( i );
mWidgetList.erase( it );
}
}
if ( mWidgetList.count() == 0 )
Expand Down

0 comments on commit c1adeb0

Please sign in to comment.