Skip to content

Commit

Permalink
fix segfault on exit after enabling topology dock window
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayan committed Apr 13, 2013
1 parent 5280e21 commit 14c0bb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/topology/checkDock.cpp
Expand Up @@ -103,7 +103,6 @@ checkDock::checkDock( QgisInterface* qIface, QWidget* parent )
checkDock::~checkDock()
{
delete mConfigureDialog;
delete mErrorListModel;

QList<QgsRubberBand*>::const_iterator it;
for ( it = mRbErrorMarkers.begin(); it != mRbErrorMarkers.end(); ++it )
Expand All @@ -117,6 +116,7 @@ checkDock::~checkDock()

// delete errors in list
deleteErrors();
delete mErrorListModel;
}

void checkDock::clearVertexMarkers()
Expand Down

0 comments on commit 14c0bb7

Please sign in to comment.