Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@13558 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed May 24, 2010
1 parent 7b38553 commit 088678c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/plugins/georeferencer/qgsgeorefplugingui.cpp
Expand Up @@ -1219,7 +1219,7 @@ bool QgsGeorefPluginGui::calculateMeanError( double& error ) const
return false;
}

int nPointsEnabled = 0;
unsigned int nPointsEnabled = 0;
QgsGCPList::const_iterator gcpIt = mPoints.constBegin();
for ( ; gcpIt != mPoints.constEnd(); ++gcpIt )
{
Expand All @@ -1241,7 +1241,6 @@ bool QgsGeorefPluginGui::calculateMeanError( double& error ) const

double sumVxSquare = 0;
double sumVySquare = 0;
double resXMap, resYMap;

gcpIt = mPoints.constBegin();
for ( ; gcpIt != mPoints.constEnd(); ++gcpIt )
Expand Down

0 comments on commit 088678c

Please sign in to comment.