Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix leak in QgsFieldConditionalFormatWidget
  • Loading branch information
nyalldawson committed Aug 25, 2015
1 parent 7901ce2 commit 74234e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsfieldconditionalformatwidget.cpp
Expand Up @@ -26,7 +26,7 @@ QgsFieldConditionalFormatWidget::QgsFieldConditionalFormatWidget( QWidget *paren
btnBackgroundColor->setShowNoColor( true );
btnTextColor->setAllowAlpha( true );
btnTextColor->setShowNoColor( true );
mModel = new QStandardItemModel();
mModel = new QStandardItemModel( listView );
listView->setModel( mModel );
}

Expand Down

0 comments on commit 74234e1

Please sign in to comment.