Skip to content

Commit

Permalink
Fix for #1255 (again, last time in r6368). I hope this will be the la…
Browse files Browse the repository at this point in the history
…st time I fix this bug. :-)

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9360 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
homann committed Sep 19, 2008
1 parent a46fabf commit 7b7dbe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/qgspointdialog.cpp
Expand Up @@ -422,8 +422,8 @@ void QgsPointDialog::deleteDataPoint( QgsPoint& coords )
QgsDebugMsg( QString( "deleteDataPoint! test: %1" ).arg(( x*x + y*y ) ) );
if (( x*x + y*y ) < maxDistSqr )
{
mPoints.erase( it );
delete *it;
mPoints.erase( it );
--mAcetateCounter;
mCanvas->refresh();
break;
Expand Down

0 comments on commit 7b7dbe6

Please sign in to comment.