The delete point function now works in the georeferencer

git-svn-id: http://svn.osgeo.org/qgis/trunk@5755 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
g_j_m 2006-09-02 11:31:37 +00:00
parent 1907ae6253
commit 1227f22d40

View File

@ -451,6 +451,7 @@ void QgsPointDialog::deleteDataPoint(QgsPoint& coords)
if ((x*x + y*y) < maxDistSqr)
{
mPoints.erase(it);
delete *it;
mCanvas->refresh();
break;
}