Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix memory leak
  • Loading branch information
nyalldawson committed Sep 12, 2017
1 parent 239e353 commit 026309d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/geonode/qgsgeonodesourceselect.cpp
Expand Up @@ -60,7 +60,7 @@ QgsGeoNodeSourceSelect::QgsGeoNodeSourceSelect( QWidget *parent, Qt::WindowFlags
mItemDelegate = new QgsGeonodeItemDelegate( treeView );
treeView->setItemDelegate( mItemDelegate );

mModel = new QStandardItemModel();
mModel = new QStandardItemModel( this );
mModel->setHorizontalHeaderItem( MODEL_IDX_TITLE, new QStandardItem( tr( "Title" ) ) );
mModel->setHorizontalHeaderItem( MODEL_IDX_NAME, new QStandardItem( tr( "Name" ) ) );
mModel->setHorizontalHeaderItem( MODEL_IDX_TYPE, new QStandardItem( tr( "Type" ) ) );
Expand Down

0 comments on commit 026309d

Please sign in to comment.