Skip to content

Commit b36ea13

Browse files
author
jef
committedMay 24, 2010
fix warnings
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13558 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎src/plugins/georeferencer/qgsgeorefplugingui.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,7 +1219,7 @@ bool QgsGeorefPluginGui::calculateMeanError( double& error ) const
12191219
return false;
12201220
}
12211221

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

12421242
double sumVxSquare = 0;
12431243
double sumVySquare = 0;
1244-
double resXMap, resYMap;
12451244

12461245
gcpIt = mPoints.constBegin();
12471246
for ( ; gcpIt != mPoints.constEnd(); ++gcpIt )

0 commit comments

Comments
 (0)
Please sign in to comment.