Skip to content

Commit

Permalink
The delete point function now works in the georeferencer
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5755 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Sep 2, 2006
1 parent 1b3b8c7 commit 85079e1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/plugins/georeferencer/qgspointdialog.cpp
Expand Up @@ -451,6 +451,7 @@ void QgsPointDialog::deleteDataPoint(QgsPoint& coords)
if ((x*x + y*y) < maxDistSqr)
{
mPoints.erase(it);
delete *it;
mCanvas->refresh();
break;
}
Expand Down

0 comments on commit 85079e1

Please sign in to comment.