Skip to content

Commit 48fef93

Browse files
author
homann
committedSep 19, 2008
Fix for #1255 (again, last time in r6368). I hope this will be the last time I fix this bug. :-)
git-svn-id: http://svn.osgeo.org/qgis/trunk@9360 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 9c0f6bb commit 48fef93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/plugins/georeferencer/qgspointdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,8 +422,8 @@ void QgsPointDialog::deleteDataPoint( QgsPoint& coords )
422422
QgsDebugMsg( QString( "deleteDataPoint! test: %1" ).arg(( x*x + y*y ) ) );
423423
if (( x*x + y*y ) < maxDistSqr )
424424
{
425-
mPoints.erase( it );
426425
delete *it;
426+
mPoints.erase( it );
427427
--mAcetateCounter;
428428
mCanvas->refresh();
429429
break;

0 commit comments

Comments
 (0)
Please sign in to comment.